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