main.es6 420 字节
Newer Older
W
wangqun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* eslint-disable */
/**
 * @file 加法主函数
 * @author yangmingming
 */
export default `
// start函数
void main(void) {
    // 输出数据
    ivec4 oPos = getOutputTensorPosLIMIT_OUT();
    int index = oPos[axis];
    float o = getPixelsFromTexturePos_texture_origin(vCoord).r;
    float c = getValueFromCounter(index);
    float res = ACTIVE_FUNCTION(o + c, multi_value, bias_value);
    setOutput(res);
}
`;