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