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