Sha256: c98f8f49736326ece26f4bab2b30aee18ea286920bb561e22ea2829a0d3bc4c6
Contents?: true
Size: 421 Bytes
Versions: 13
Compression:
Stored size: 421 Bytes
Contents
% c_dtype = dtype_to_c_type(dtype) __kernel void sin_<%= 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] = sin(A[globalRow * N + globalCol]); }
Version data entries
13 entries across 13 versions & 2 rubygems