Sha256: 7958e8f0330d51259974c39fc0223ebe0a78c87baf552bdf08bd3e5e98d82702
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
static void <%=c_iter%>(na_loop_t *const lp) { size_t i, s1; char *p1; size_t *idx1; dtype x; volatile VALUE a, y; INIT_COUNTER(lp, i); INIT_PTR_IDX(lp, 0, p1, s1, idx1); a = rb_ary_new2(i); rb_ary_push(lp->args[1].value, a); //SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>"); if (idx1) { for (; i--;) { GET_DATA_INDEX(p1,idx1,dtype,x); y = m_data_to_num(x); rb_ary_push(a,y); } } else { for (; i--;) { GET_DATA_STRIDE(p1,s1,dtype,x); y = m_data_to_num(x); rb_ary_push(a,y); } } } /* Convert self to Array. @overload <%=name%> @return [Array] */ static VALUE <%=c_func(0)%>(VALUE self) { ndfunc_arg_in_t ain[3] = {{Qnil,0},{sym_loop_opt},{sym_option}}; ndfunc_arg_out_t aout[1] = {{rb_cArray,0}}; // dummy? ndfunc_t ndf = { <%=c_iter%>, FULL_LOOP_NIP, 3, 1, ain, aout }; cumo_cuda_runtime_check_status(cudaDeviceSynchronize()); return na_ndloop_cast_narray_to_rarray(&ndf, self, Qnil); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cumo-0.1.0 | ext/cumo/narray/gen/tmpl/to_a.c |