common_params.es6 535 字节
Newer Older
Y
Yanzhan Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* eslint-disable */
/**
 * @file 公共参数
 * @author yangmingming
 */
export default `
    // dynamic的input数据
    const float multi_value = float(MULTI_VALUE);
    const float bias_value = float(BIAS_VALUE);

    // 输出数据
    const int width_shape_out = WIDTH_SHAPE_OUT;
    const int height_shape_out = HEIGHT_SHAPE_OUT;
    const int width_texture_out = WIDTH_TEXTURE_OUT;
    const int height_texture_out = HEIGHT_TEXTURE_OUT;
    const int channel_out = CHANNEL_OUT;
Y
yangmingming 已提交
17
    const int offset_y_out = OFFSET_Y_OUT;
Y
Yanzhan Yang 已提交
18
`;