Sha256: 143b5343fe976c5bd4e9f1dd17454a448945b04c3761cbfcbf5200596b8d70b3

Contents?: true

Size: 1.29 KB

Versions: 17

Compression:

Stored size: 1.29 KB

Contents

static void
<%=c_iter%>(na_loop_t *const lp)
{
    size_t  i, s1, s2;
    char   *p1, *p2;
    size_t *idx1, *idx2;
    <%=dtype%> x;
    dtype y;

    INIT_COUNTER(lp, i);
    INIT_PTR_IDX(lp, 0, p1, s1, idx1);
    INIT_PTR_IDX(lp, 1, p2, s2, idx2);
    if (idx2) {
        if (idx1) {
            for (; i--;) {
                GET_DATA_INDEX(p2,idx2,<%=dtype%>,x);
                y = <%=macro%>(x);
                SET_DATA_INDEX(p1,idx1,dtype,y);
            }
        } else {
            for (; i--;) {
                GET_DATA_INDEX(p2,idx2,<%=dtype%>,x);
                y = <%=macro%>(x);
                SET_DATA_STRIDE(p1,s1,dtype,y);
            }
        }
    } else {
        if (idx1) {
            for (; i--;) {
                GET_DATA_STRIDE(p2,s2,<%=dtype%>,x);
                y = <%=macro%>(x);
                SET_DATA_INDEX(p1,idx1,dtype,y);
            }
        } else {
            for (; i--;) {
                GET_DATA_STRIDE(p2,s2,<%=dtype%>,x);
                y = <%=macro%>(x);
                SET_DATA_STRIDE(p1,s1,dtype,y);
            }
        }
    }
}


static VALUE
<%=c_func(:nodef)%>(VALUE self, VALUE obj)
{
    ndfunc_arg_in_t ain[2] = {{OVERWRITE,0},{Qnil,0}};
    ndfunc_t ndf = { <%=c_iter%>, FULL_LOOP, 2, 0, ain, 0 };

    na_ndloop(&ndf, 2, self, obj);
    return self;
}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
numo-narray-0.9.2.1 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.2.0 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.9 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.8 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.7 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.6 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.5 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.4 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.3 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.2 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.1 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.1.0 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.0.9 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.0.8 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.0.7 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.0.6 ext/numo/narray/gen/tmpl/store_from.c
numo-narray-0.9.0.5 ext/numo/narray/gen/tmpl/store_from.c