feed_kernel.cl 1.2 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

Y
yangfei 已提交
15
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
16
__kernel void feed(__global float *in, __write_only image2d_t outputImage,int h,int w,int c)
Y
yangfei 已提交
17
 {
Y
yangfei 已提交
18 19
        int i = get_global_id(0);
        int j = get_global_id(1);
Y
yangfei 已提交
20 21
        half4 pixel;
        pixel.x = convert_half(in[(i * w + j)]);
22
        if(c>=2){
Y
yangfei 已提交
23
        pixel.y = convert_half(in[h * w + (i * w + j)]);
24 25 26 27
        }else{
        pixel.y = 0.0;
        }
        if(c>=3){
Y
yangfei 已提交
28
        pixel.z = convert_half(in[2 * h * w + (i * w + j)]);
29 30 31
        }else{
         pixel.z = 0.0;
        }
Y
yangfei 已提交
32 33 34 35
        pixel.w = 0.0;
        int2 coords;
        coords.x = j;
        coords.y = i;
Y
yangfei 已提交
36

Y
yangfei 已提交
37
        write_imageh(outputImage,coords,pixel);
Y
yangfei 已提交
38
 }