Sha256: 789e2e52d66bee279ff46a58e236225d8fa42a8e776ab75036a97be4af634a20
Contents?: true
Size: 1.29 KB
Versions: 8
Compression:
Stored size: 1.29 KB
Contents
static void <%=c_iter%>(na_loop_t *const lp) { size_t i; char *p1, *p2; BIT_DIGIT *a3; size_t p3; ssize_t s1, s2, s3; dtype x, y; BIT_DIGIT b; INIT_COUNTER(lp, i); INIT_PTR(lp, 0, p1, s1); INIT_PTR(lp, 1, p2, s2); INIT_PTR_BIT(lp, 2, a3, p3, s3); for (; i--;) { GET_DATA_STRIDE(p1,s1,dtype,x); GET_DATA_STRIDE(p2,s2,dtype,y); b = (m_<%=name%>(x,y)) ? 1:0; STORE_BIT(a3,p3,b); p3+=s3; } } 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] = {{numo_cBit,0}}; ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP, 2, 1, ain, aout }; return na_ndloop(&ndf, 2, self, other); } /* Comparison <%=name%> other. @overload <%=op_map%> other @param [Numo::NArray,Numeric] other @return [Numo::Bit] result of self <%=name%> 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
8 entries across 8 versions & 1 rubygems