Sha256: 8507efc7b3462baeef355e787386a80bc0db81fec8004387b339601ab2e05772

Contents?: true

Size: 422 Bytes

Versions: 13

Compression:

Stored size: 422 Bytes

Contents

% c_dtype = dtype_to_c_type(dtype)
__kernel void tanh_<%= dtype %>(const int M, const int N, __global const <%= c_dtype %> *A, __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] = tanh(A[globalRow * N + globalCol]);
}

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
tensor_stream-opencl-0.1.3 lib/tensor_stream/opencl/kernels/tanh.cl
tensor_stream-opencl-0.1.2 lib/tensor_stream/opencl/kernels/tanh.cl
tensor_stream-opencl-0.1.1 lib/tensor_stream/opencl/kernels/tanh.cl
tensor_stream-opencl-0.1.0 lib/tensor_stream/opencl/kernels/tanh.cl
tensor_stream-0.8.1 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.8.0 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.7.0 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.6.1 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.6.0 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.5.1 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.5.0 lib/tensor_stream/evaluator/opencl/kernels/tanh.cl
tensor_stream-0.4.1 lib/tensor_stream/evaluator/kernels/tanh.cl
tensor_stream-0.4.0 lib/tensor_stream/evaluator/kernels/tanh.cl