Sha256: 47682d7d339a01e0eb73b4571141e87f75383e47548fcef30bdd9598abe94b13
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
static void <%=c_iter%>(na_loop_t *const lp) { size_t i; char *p1; ssize_t s1; size_t *idx1; dtype *x; VALUE y; volatile VALUE a; VALUE fmt = lp->option; 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--;) { x = (dtype*)(p1 + *idx1); idx1++; y = format_<%=type_name%>(fmt, x); rb_ary_push(a,y); } } else { for (; i--;) { x = (dtype*)p1; p1+=s1; y = format_<%=type_name%>(fmt, x); rb_ary_push(a,y); } } } /* Format elements into strings. @overload <%=name%> format @param [String] format @return [Array] array of formated strings. */ static VALUE <%=c_func(-1)%>(int argc, VALUE *argv, VALUE self) { VALUE fmt=Qnil; 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 }; rb_scan_args(argc, argv, "01", &fmt); cumo_cuda_runtime_check_status(cudaDeviceSynchronize()); return na_ndloop_cast_narray_to_rarray(&ndf, self, fmt); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cumo-0.1.0 | ext/cumo/narray/gen/tmpl/format_to_a.c |