main.es6 674 字节
Newer Older
W
wangqun 已提交
1 2 3 4 5 6 7 8
/* eslint-disable */
/**
 * @file split主函数
 * @author zhangjingyuan02
 */
export default `
// start函数
void main(void) {
9
    int length = int(target_length / num);
W
wangqun 已提交
10 11
    ivec4 oPos = getOutputTensorPos();
    // 输出坐标转换为输入坐标
W
wangqun 已提交
12 13 14 15
	//int sumVal = oPos.g + oPos.a * channel_out + oPos.b * channel_out * width_shape_out + oPos.r * channel_out * width_shape_out * height_shape_out;
    //ivec4 new_oPos = transferFromNHWCtoNCHW(sumVal, channel_out, width_shape_out, height_shape_out, total_shape_out);
    oPos[dim] = oPos[dim] + layer_run_time * length;
	float o = getValueFromTensorPos_origin(oPos.r, oPos.g, oPos.b, oPos.a);
W
wangqun 已提交
16 17 18
	setOutput(float(o));
}
`;