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