Sha256: 33f385681e229e7c389d4169b91ef2a1e47b8f94b566fb0715090c7ed1e57407
Contents?: true
Size: 276 Bytes
Versions: 13
Compression:
Stored size: 276 Bytes
Contents
% c_dtype = dtype_to_c_type(dtype) __kernel void sin_<%= 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] = sin(A[id]); }
Version data entries
13 entries across 13 versions & 1 rubygems