Sha256: f32ab16a2b7c7049fdbd19c488c8c008fa0e273a9e75f734a2e2b206ceff2cd8

Contents?: true

Size: 547 Bytes

Versions: 16

Compression:

Stored size: 547 Bytes

Contents

% c_dtype = dtype_to_c_type(dtype)
 __kernel void where_<%= dtype %>(const int M, const int N, __global const uchar *PRED, __global const <%= c_dtype %> *A, __global const  <%= c_dtype %> *B, __global <%= c_dtype %> *C) {
    // Get the index of the current element to be processed
    const int globalRow = get_global_id(0); // Row ID of C (0..M)
    const int globalCol = get_global_id(1); // Col ID of C (0..N)

    C[globalRow * N + globalCol] = PRED[globalRow * N + globalCol]  ? A[globalRow * N + globalCol] : B[globalRow * N + globalCol];
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
tensor_stream-opencl-0.3.2 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.3.1 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.3.0 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.10 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.9 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.8 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.6 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.5 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.4 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.3 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.2 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.1 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.2.0 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.1.3 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.1.2 lib/tensor_stream/opencl/kernels/where.cl
tensor_stream-opencl-0.1.1 lib/tensor_stream/opencl/kernels/where.cl