Sha256: 638546e8f8cfe54bf4e3a0abe8a7b5b8cf9e83954c0bbf64015d8316be1573ca
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
static void <%=c_iter%>(na_loop_t *const lp) { size_t i, n; char *p1, *p2, *p3; ssize_t s1, s2, s3; dtype x, y; INIT_COUNTER(lp, n); INIT_PTR(lp, 0, p1, s1); INIT_PTR(lp, 1, p2, s2); INIT_PTR(lp, 2, p3, s3); for (i=n; i--;) { GET_DATA_STRIDE(p1,s1,dtype,x); GET_DATA_STRIDE(p2,s2,dtype,y); <% if is_int and %w[div mod divmod].include? name %> if (y==0) { lp->err_type = rb_eZeroDivError; return; } <% end %> x = m_<%=name%>(x,y); SET_DATA_STRIDE(p3,s3,dtype,x); } } static VALUE <%=c_func%>_self(VALUE self, VALUE other) { ndfunc_arg_in_t ain[2] = {{cT,0},{cT,0}}; ndfunc_arg_out_t aout[1] = {{cT,0}}; ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP, 2, 1, ain, aout }; return na_ndloop(&ndf, 2, self, other); } /* Binary <%=name%>. @overload <%=op_map%> other @param [Numo::NArray,Numeric] other @return [Numo::NArray] self <%=op_map%> other */ static VALUE <%=c_func(1)%>(VALUE self, VALUE other) { <% if is_object %> return <%=c_func%>_self(self, other); <% else %> VALUE klass, v; klass = na_upcast(CLASS_OF(self),CLASS_OF(other)); if (klass==cT) { return <%=c_func%>_self(self, other); } else { v = rb_funcall(klass, id_cast, 1, self); return rb_funcall(v, <%=id_op%>, 1, other); } <% end %> }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
numo-narray-0.9.0.7 | ext/numo/narray/gen/tmpl/binary.c |
numo-narray-0.9.0.6 | ext/numo/narray/gen/tmpl/binary.c |
numo-narray-0.9.0.5 | ext/numo/narray/gen/tmpl/binary.c |