Sha256: ae34da8444bf7c6415f42594644c300ad89648b117ab1b7f920e500cab3c5299

Contents?: true

Size: 629 Bytes

Versions: 13

Compression:

Stored size: 629 Bytes

Contents

% c_dtype = dtype_to_c_type(dtype)
% if TensorStream::Ops::FLOATING_POINT_TYPES.include?(dtype)
__kernel void abs_<%= dtype%>(__global const <%= c_dtype %> *A, __global <%= c_dtype %> *C) {
    // Get the index of the current element to be processed
    const int id = get_global_id(0); // Row ID of C (0..M)

    C[id] = fabs(A[id]);
}
% else
% %w[int int32].each do |dt|
__kernel void abs_<%= dt %>(__global const <%= c_dtype %> *A, __global <%= c_dtype %> *C) {
    // Get the index of the current element to be processed
    const int id = get_global_id(0); // Row ID of C (0..M)

    C[id] = fabs((float)A[id]);
}
% end
%end

Version data entries

13 entries across 13 versions & 1 rubygems

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