cumo 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.travis.yml +5 -0
- data/3rd_party/mkmf-cu/.gitignore +36 -0
- data/3rd_party/mkmf-cu/Gemfile +3 -0
- data/3rd_party/mkmf-cu/LICENSE +21 -0
- data/3rd_party/mkmf-cu/README.md +36 -0
- data/3rd_party/mkmf-cu/Rakefile +11 -0
- data/3rd_party/mkmf-cu/bin/mkmf-cu-nvcc +4 -0
- data/3rd_party/mkmf-cu/lib/mkmf-cu.rb +32 -0
- data/3rd_party/mkmf-cu/lib/mkmf-cu/cli.rb +80 -0
- data/3rd_party/mkmf-cu/lib/mkmf-cu/nvcc.rb +157 -0
- data/3rd_party/mkmf-cu/mkmf-cu.gemspec +16 -0
- data/3rd_party/mkmf-cu/test/test_mkmf-cu.rb +67 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +82 -0
- data/README.md +252 -0
- data/Rakefile +43 -0
- data/bench/broadcast_fp32.rb +138 -0
- data/bench/cumo_bench.rb +193 -0
- data/bench/numo_bench.rb +138 -0
- data/bench/reduction_fp32.rb +117 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cumo.gemspec +32 -0
- data/ext/cumo/cuda/cublas.c +278 -0
- data/ext/cumo/cuda/driver.c +421 -0
- data/ext/cumo/cuda/memory_pool.cpp +185 -0
- data/ext/cumo/cuda/memory_pool_impl.cpp +308 -0
- data/ext/cumo/cuda/memory_pool_impl.hpp +370 -0
- data/ext/cumo/cuda/memory_pool_impl_test.cpp +554 -0
- data/ext/cumo/cuda/nvrtc.c +207 -0
- data/ext/cumo/cuda/runtime.c +167 -0
- data/ext/cumo/cumo.c +148 -0
- data/ext/cumo/depend.erb +58 -0
- data/ext/cumo/extconf.rb +179 -0
- data/ext/cumo/include/cumo.h +25 -0
- data/ext/cumo/include/cumo/compat.h +23 -0
- data/ext/cumo/include/cumo/cuda/cublas.h +153 -0
- data/ext/cumo/include/cumo/cuda/cumo_thrust.hpp +187 -0
- data/ext/cumo/include/cumo/cuda/cumo_thrust_complex.hpp +79 -0
- data/ext/cumo/include/cumo/cuda/driver.h +22 -0
- data/ext/cumo/include/cumo/cuda/memory_pool.h +28 -0
- data/ext/cumo/include/cumo/cuda/nvrtc.h +22 -0
- data/ext/cumo/include/cumo/cuda/runtime.h +40 -0
- data/ext/cumo/include/cumo/indexer.h +238 -0
- data/ext/cumo/include/cumo/intern.h +142 -0
- data/ext/cumo/include/cumo/intern_fwd.h +38 -0
- data/ext/cumo/include/cumo/intern_kernel.h +6 -0
- data/ext/cumo/include/cumo/narray.h +429 -0
- data/ext/cumo/include/cumo/narray_kernel.h +149 -0
- data/ext/cumo/include/cumo/ndloop.h +95 -0
- data/ext/cumo/include/cumo/reduce_kernel.h +126 -0
- data/ext/cumo/include/cumo/template.h +158 -0
- data/ext/cumo/include/cumo/template_kernel.h +77 -0
- data/ext/cumo/include/cumo/types/bit.h +40 -0
- data/ext/cumo/include/cumo/types/bit_kernel.h +34 -0
- data/ext/cumo/include/cumo/types/complex.h +402 -0
- data/ext/cumo/include/cumo/types/complex_kernel.h +414 -0
- data/ext/cumo/include/cumo/types/complex_macro.h +382 -0
- data/ext/cumo/include/cumo/types/complex_macro_kernel.h +186 -0
- data/ext/cumo/include/cumo/types/dcomplex.h +46 -0
- data/ext/cumo/include/cumo/types/dcomplex_kernel.h +13 -0
- data/ext/cumo/include/cumo/types/dfloat.h +47 -0
- data/ext/cumo/include/cumo/types/dfloat_kernel.h +14 -0
- data/ext/cumo/include/cumo/types/float_def.h +34 -0
- data/ext/cumo/include/cumo/types/float_def_kernel.h +39 -0
- data/ext/cumo/include/cumo/types/float_macro.h +191 -0
- data/ext/cumo/include/cumo/types/float_macro_kernel.h +158 -0
- data/ext/cumo/include/cumo/types/int16.h +24 -0
- data/ext/cumo/include/cumo/types/int16_kernel.h +23 -0
- data/ext/cumo/include/cumo/types/int32.h +24 -0
- data/ext/cumo/include/cumo/types/int32_kernel.h +19 -0
- data/ext/cumo/include/cumo/types/int64.h +24 -0
- data/ext/cumo/include/cumo/types/int64_kernel.h +19 -0
- data/ext/cumo/include/cumo/types/int8.h +24 -0
- data/ext/cumo/include/cumo/types/int8_kernel.h +19 -0
- data/ext/cumo/include/cumo/types/int_macro.h +67 -0
- data/ext/cumo/include/cumo/types/int_macro_kernel.h +48 -0
- data/ext/cumo/include/cumo/types/real_accum.h +486 -0
- data/ext/cumo/include/cumo/types/real_accum_kernel.h +101 -0
- data/ext/cumo/include/cumo/types/robj_macro.h +80 -0
- data/ext/cumo/include/cumo/types/robj_macro_kernel.h +0 -0
- data/ext/cumo/include/cumo/types/robject.h +27 -0
- data/ext/cumo/include/cumo/types/robject_kernel.h +7 -0
- data/ext/cumo/include/cumo/types/scomplex.h +46 -0
- data/ext/cumo/include/cumo/types/scomplex_kernel.h +13 -0
- data/ext/cumo/include/cumo/types/sfloat.h +48 -0
- data/ext/cumo/include/cumo/types/sfloat_kernel.h +14 -0
- data/ext/cumo/include/cumo/types/uint16.h +25 -0
- data/ext/cumo/include/cumo/types/uint16_kernel.h +20 -0
- data/ext/cumo/include/cumo/types/uint32.h +25 -0
- data/ext/cumo/include/cumo/types/uint32_kernel.h +20 -0
- data/ext/cumo/include/cumo/types/uint64.h +25 -0
- data/ext/cumo/include/cumo/types/uint64_kernel.h +20 -0
- data/ext/cumo/include/cumo/types/uint8.h +25 -0
- data/ext/cumo/include/cumo/types/uint8_kernel.h +20 -0
- data/ext/cumo/include/cumo/types/uint_macro.h +58 -0
- data/ext/cumo/include/cumo/types/uint_macro_kernel.h +38 -0
- data/ext/cumo/include/cumo/types/xint_macro.h +169 -0
- data/ext/cumo/include/cumo/types/xint_macro_kernel.h +88 -0
- data/ext/cumo/narray/SFMT-params.h +97 -0
- data/ext/cumo/narray/SFMT-params19937.h +46 -0
- data/ext/cumo/narray/SFMT.c +620 -0
- data/ext/cumo/narray/SFMT.h +167 -0
- data/ext/cumo/narray/array.c +638 -0
- data/ext/cumo/narray/data.c +961 -0
- data/ext/cumo/narray/gen/cogen.rb +56 -0
- data/ext/cumo/narray/gen/cogen_kernel.rb +58 -0
- data/ext/cumo/narray/gen/def/bit.rb +37 -0
- data/ext/cumo/narray/gen/def/dcomplex.rb +39 -0
- data/ext/cumo/narray/gen/def/dfloat.rb +37 -0
- data/ext/cumo/narray/gen/def/int16.rb +36 -0
- data/ext/cumo/narray/gen/def/int32.rb +36 -0
- data/ext/cumo/narray/gen/def/int64.rb +36 -0
- data/ext/cumo/narray/gen/def/int8.rb +36 -0
- data/ext/cumo/narray/gen/def/robject.rb +37 -0
- data/ext/cumo/narray/gen/def/scomplex.rb +39 -0
- data/ext/cumo/narray/gen/def/sfloat.rb +37 -0
- data/ext/cumo/narray/gen/def/uint16.rb +36 -0
- data/ext/cumo/narray/gen/def/uint32.rb +36 -0
- data/ext/cumo/narray/gen/def/uint64.rb +36 -0
- data/ext/cumo/narray/gen/def/uint8.rb +36 -0
- data/ext/cumo/narray/gen/erbpp2.rb +346 -0
- data/ext/cumo/narray/gen/narray_def.rb +268 -0
- data/ext/cumo/narray/gen/spec.rb +425 -0
- data/ext/cumo/narray/gen/tmpl/accum.c +86 -0
- data/ext/cumo/narray/gen/tmpl/accum_binary.c +121 -0
- data/ext/cumo/narray/gen/tmpl/accum_binary_kernel.cu +61 -0
- data/ext/cumo/narray/gen/tmpl/accum_index.c +119 -0
- data/ext/cumo/narray/gen/tmpl/accum_index_kernel.cu +66 -0
- data/ext/cumo/narray/gen/tmpl/accum_kernel.cu +12 -0
- data/ext/cumo/narray/gen/tmpl/alloc_func.c +107 -0
- data/ext/cumo/narray/gen/tmpl/allocate.c +37 -0
- data/ext/cumo/narray/gen/tmpl/aref.c +66 -0
- data/ext/cumo/narray/gen/tmpl/aref_cpu.c +50 -0
- data/ext/cumo/narray/gen/tmpl/aset.c +56 -0
- data/ext/cumo/narray/gen/tmpl/binary.c +162 -0
- data/ext/cumo/narray/gen/tmpl/binary2.c +70 -0
- data/ext/cumo/narray/gen/tmpl/binary2_kernel.cu +15 -0
- data/ext/cumo/narray/gen/tmpl/binary_kernel.cu +31 -0
- data/ext/cumo/narray/gen/tmpl/binary_s.c +45 -0
- data/ext/cumo/narray/gen/tmpl/binary_s_kernel.cu +15 -0
- data/ext/cumo/narray/gen/tmpl/bincount.c +181 -0
- data/ext/cumo/narray/gen/tmpl/cast.c +44 -0
- data/ext/cumo/narray/gen/tmpl/cast_array.c +13 -0
- data/ext/cumo/narray/gen/tmpl/class.c +9 -0
- data/ext/cumo/narray/gen/tmpl/class_kernel.cu +6 -0
- data/ext/cumo/narray/gen/tmpl/clip.c +121 -0
- data/ext/cumo/narray/gen/tmpl/coerce_cast.c +10 -0
- data/ext/cumo/narray/gen/tmpl/complex_accum_kernel.cu +129 -0
- data/ext/cumo/narray/gen/tmpl/cond_binary.c +68 -0
- data/ext/cumo/narray/gen/tmpl/cond_binary_kernel.cu +18 -0
- data/ext/cumo/narray/gen/tmpl/cond_unary.c +46 -0
- data/ext/cumo/narray/gen/tmpl/cum.c +50 -0
- data/ext/cumo/narray/gen/tmpl/each.c +47 -0
- data/ext/cumo/narray/gen/tmpl/each_with_index.c +70 -0
- data/ext/cumo/narray/gen/tmpl/ewcomp.c +79 -0
- data/ext/cumo/narray/gen/tmpl/ewcomp_kernel.cu +19 -0
- data/ext/cumo/narray/gen/tmpl/extract.c +22 -0
- data/ext/cumo/narray/gen/tmpl/extract_cpu.c +26 -0
- data/ext/cumo/narray/gen/tmpl/extract_data.c +53 -0
- data/ext/cumo/narray/gen/tmpl/eye.c +105 -0
- data/ext/cumo/narray/gen/tmpl/eye_kernel.cu +19 -0
- data/ext/cumo/narray/gen/tmpl/fill.c +52 -0
- data/ext/cumo/narray/gen/tmpl/fill_kernel.cu +29 -0
- data/ext/cumo/narray/gen/tmpl/float_accum_kernel.cu +106 -0
- data/ext/cumo/narray/gen/tmpl/format.c +62 -0
- data/ext/cumo/narray/gen/tmpl/format_to_a.c +49 -0
- data/ext/cumo/narray/gen/tmpl/frexp.c +38 -0
- data/ext/cumo/narray/gen/tmpl/gemm.c +203 -0
- data/ext/cumo/narray/gen/tmpl/init_class.c +20 -0
- data/ext/cumo/narray/gen/tmpl/init_module.c +12 -0
- data/ext/cumo/narray/gen/tmpl/inspect.c +21 -0
- data/ext/cumo/narray/gen/tmpl/lib.c +50 -0
- data/ext/cumo/narray/gen/tmpl/lib_kernel.cu +24 -0
- data/ext/cumo/narray/gen/tmpl/logseq.c +102 -0
- data/ext/cumo/narray/gen/tmpl/logseq_kernel.cu +31 -0
- data/ext/cumo/narray/gen/tmpl/map_with_index.c +98 -0
- data/ext/cumo/narray/gen/tmpl/median.c +66 -0
- data/ext/cumo/narray/gen/tmpl/minmax.c +47 -0
- data/ext/cumo/narray/gen/tmpl/module.c +9 -0
- data/ext/cumo/narray/gen/tmpl/module_kernel.cu +1 -0
- data/ext/cumo/narray/gen/tmpl/new_dim0.c +15 -0
- data/ext/cumo/narray/gen/tmpl/new_dim0_kernel.cu +8 -0
- data/ext/cumo/narray/gen/tmpl/poly.c +50 -0
- data/ext/cumo/narray/gen/tmpl/pow.c +97 -0
- data/ext/cumo/narray/gen/tmpl/pow_kernel.cu +29 -0
- data/ext/cumo/narray/gen/tmpl/powint.c +17 -0
- data/ext/cumo/narray/gen/tmpl/qsort.c +212 -0
- data/ext/cumo/narray/gen/tmpl/rand.c +168 -0
- data/ext/cumo/narray/gen/tmpl/rand_norm.c +121 -0
- data/ext/cumo/narray/gen/tmpl/real_accum_kernel.cu +75 -0
- data/ext/cumo/narray/gen/tmpl/seq.c +112 -0
- data/ext/cumo/narray/gen/tmpl/seq_kernel.cu +43 -0
- data/ext/cumo/narray/gen/tmpl/set2.c +57 -0
- data/ext/cumo/narray/gen/tmpl/sort.c +48 -0
- data/ext/cumo/narray/gen/tmpl/sort_index.c +111 -0
- data/ext/cumo/narray/gen/tmpl/store.c +41 -0
- data/ext/cumo/narray/gen/tmpl/store_array.c +187 -0
- data/ext/cumo/narray/gen/tmpl/store_array_kernel.cu +58 -0
- data/ext/cumo/narray/gen/tmpl/store_bit.c +86 -0
- data/ext/cumo/narray/gen/tmpl/store_bit_kernel.cu +66 -0
- data/ext/cumo/narray/gen/tmpl/store_from.c +81 -0
- data/ext/cumo/narray/gen/tmpl/store_from_kernel.cu +58 -0
- data/ext/cumo/narray/gen/tmpl/store_kernel.cu +3 -0
- data/ext/cumo/narray/gen/tmpl/store_numeric.c +9 -0
- data/ext/cumo/narray/gen/tmpl/to_a.c +43 -0
- data/ext/cumo/narray/gen/tmpl/unary.c +132 -0
- data/ext/cumo/narray/gen/tmpl/unary2.c +60 -0
- data/ext/cumo/narray/gen/tmpl/unary_kernel.cu +72 -0
- data/ext/cumo/narray/gen/tmpl/unary_ret2.c +34 -0
- data/ext/cumo/narray/gen/tmpl/unary_s.c +86 -0
- data/ext/cumo/narray/gen/tmpl/unary_s_kernel.cu +58 -0
- data/ext/cumo/narray/gen/tmpl_bit/allocate.c +24 -0
- data/ext/cumo/narray/gen/tmpl_bit/aref.c +54 -0
- data/ext/cumo/narray/gen/tmpl_bit/aref_cpu.c +57 -0
- data/ext/cumo/narray/gen/tmpl_bit/aset.c +56 -0
- data/ext/cumo/narray/gen/tmpl_bit/binary.c +98 -0
- data/ext/cumo/narray/gen/tmpl_bit/bit_count.c +64 -0
- data/ext/cumo/narray/gen/tmpl_bit/bit_count_cpu.c +88 -0
- data/ext/cumo/narray/gen/tmpl_bit/bit_count_kernel.cu +76 -0
- data/ext/cumo/narray/gen/tmpl_bit/bit_reduce.c +133 -0
- data/ext/cumo/narray/gen/tmpl_bit/each.c +48 -0
- data/ext/cumo/narray/gen/tmpl_bit/each_with_index.c +70 -0
- data/ext/cumo/narray/gen/tmpl_bit/extract.c +30 -0
- data/ext/cumo/narray/gen/tmpl_bit/extract_cpu.c +29 -0
- data/ext/cumo/narray/gen/tmpl_bit/fill.c +69 -0
- data/ext/cumo/narray/gen/tmpl_bit/format.c +64 -0
- data/ext/cumo/narray/gen/tmpl_bit/format_to_a.c +51 -0
- data/ext/cumo/narray/gen/tmpl_bit/inspect.c +21 -0
- data/ext/cumo/narray/gen/tmpl_bit/mask.c +136 -0
- data/ext/cumo/narray/gen/tmpl_bit/none_p.c +14 -0
- data/ext/cumo/narray/gen/tmpl_bit/store_array.c +108 -0
- data/ext/cumo/narray/gen/tmpl_bit/store_bit.c +70 -0
- data/ext/cumo/narray/gen/tmpl_bit/store_from.c +60 -0
- data/ext/cumo/narray/gen/tmpl_bit/to_a.c +47 -0
- data/ext/cumo/narray/gen/tmpl_bit/unary.c +81 -0
- data/ext/cumo/narray/gen/tmpl_bit/where.c +90 -0
- data/ext/cumo/narray/gen/tmpl_bit/where2.c +95 -0
- data/ext/cumo/narray/index.c +880 -0
- data/ext/cumo/narray/kwargs.c +153 -0
- data/ext/cumo/narray/math.c +142 -0
- data/ext/cumo/narray/narray.c +1948 -0
- data/ext/cumo/narray/ndloop.c +2105 -0
- data/ext/cumo/narray/rand.c +45 -0
- data/ext/cumo/narray/step.c +474 -0
- data/ext/cumo/narray/struct.c +886 -0
- data/lib/cumo.rb +3 -0
- data/lib/cumo/cuda.rb +11 -0
- data/lib/cumo/cuda/compile_error.rb +36 -0
- data/lib/cumo/cuda/compiler.rb +161 -0
- data/lib/cumo/cuda/device.rb +47 -0
- data/lib/cumo/cuda/link_state.rb +31 -0
- data/lib/cumo/cuda/module.rb +40 -0
- data/lib/cumo/cuda/nvrtc_program.rb +27 -0
- data/lib/cumo/linalg.rb +12 -0
- data/lib/cumo/narray.rb +2 -0
- data/lib/cumo/narray/extra.rb +1278 -0
- data/lib/erbpp.rb +294 -0
- data/lib/erbpp/line_number.rb +137 -0
- data/lib/erbpp/narray_def.rb +381 -0
- data/numo-narray-version +1 -0
- data/run.gdb +7 -0
- metadata +353 -0
@@ -0,0 +1,98 @@
|
|
1
|
+
static void
|
2
|
+
<%=c_iter%>(na_loop_t *const lp)
|
3
|
+
{
|
4
|
+
size_t n;
|
5
|
+
size_t p1, p2, p3;
|
6
|
+
ssize_t s1, s2, s3;
|
7
|
+
size_t *idx1, *idx2, *idx3;
|
8
|
+
int o1, o2, l1, l2, r1, r2, len;
|
9
|
+
BIT_DIGIT *a1, *a2, *a3;
|
10
|
+
BIT_DIGIT x, y;
|
11
|
+
|
12
|
+
// TODO(sonots): CUDA kernelize
|
13
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
14
|
+
cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
|
15
|
+
|
16
|
+
INIT_COUNTER(lp, n);
|
17
|
+
INIT_PTR_BIT_IDX(lp, 0, a1, p1, s1, idx1);
|
18
|
+
INIT_PTR_BIT_IDX(lp, 1, a2, p2, s2, idx2);
|
19
|
+
INIT_PTR_BIT_IDX(lp, 2, a3, p3, s3, idx3);
|
20
|
+
if (s1!=1 || s2!=1 || s3!=1 || idx1 || idx2 || idx3) {
|
21
|
+
for (; n--;) {
|
22
|
+
LOAD_BIT_STEP(a1, p1, s1, idx1, x);
|
23
|
+
LOAD_BIT_STEP(a2, p2, s2, idx2, y);
|
24
|
+
x = m_<%=name%>(x,y);
|
25
|
+
STORE_BIT_STEP(a3, p3, s3, idx3, x);
|
26
|
+
}
|
27
|
+
} else {
|
28
|
+
o1 = p1 % NB;
|
29
|
+
o1 -= p3;
|
30
|
+
o2 = p2 % NB;
|
31
|
+
o2 -= p3;
|
32
|
+
l1 = NB+o1;
|
33
|
+
r1 = NB-o1;
|
34
|
+
l2 = NB+o2;
|
35
|
+
r2 = NB-o2;
|
36
|
+
if (p3>0 || n<NB) {
|
37
|
+
len = NB - p3;
|
38
|
+
if ((int)n<len) len=n;
|
39
|
+
if (o1>=0) x = *a1>>o1;
|
40
|
+
else x = *a1<<-o1;
|
41
|
+
if (p1+len>NB) x |= *(a1+1)<<r1;
|
42
|
+
a1++;
|
43
|
+
if (o2>=0) y = *a2>>o2;
|
44
|
+
else y = *a2<<-o2;
|
45
|
+
if (p2+len>NB) y |= *(a2+1)<<r2;
|
46
|
+
a2++;
|
47
|
+
x = m_<%=name%>(x,y);
|
48
|
+
*a3 = (x & (SLB(len)<<p3)) | (*a3 & ~(SLB(len)<<p3));
|
49
|
+
a3++;
|
50
|
+
n -= len;
|
51
|
+
}
|
52
|
+
if (o1==0 && o2==0) {
|
53
|
+
for (; n>=NB; n-=NB) {
|
54
|
+
x = *(a1++);
|
55
|
+
y = *(a2++);
|
56
|
+
x = m_<%=name%>(x,y);
|
57
|
+
*(a3++) = x;
|
58
|
+
}
|
59
|
+
} else {
|
60
|
+
for (; n>=NB; n-=NB) {
|
61
|
+
x = *a1>>o1;
|
62
|
+
if (o1<0) x |= *(a1-1)>>l1;
|
63
|
+
if (o1>0) x |= *(a1+1)<<r1;
|
64
|
+
a1++;
|
65
|
+
y = *a2>>o2;
|
66
|
+
if (o2<0) y |= *(a2-1)>>l2;
|
67
|
+
if (o2>0) y |= *(a2+1)<<r2;
|
68
|
+
a2++;
|
69
|
+
x = m_<%=name%>(x,y);
|
70
|
+
*(a3++) = x;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
if (n>0) {
|
74
|
+
x = *a1>>o1;
|
75
|
+
if (o1<0) x |= *(a1-1)>>l1;
|
76
|
+
y = *a2>>o2;
|
77
|
+
if (o2<0) y |= *(a2-1)>>l2;
|
78
|
+
x = m_<%=name%>(x,y);
|
79
|
+
*a3 = (x & SLB(n)) | (*a3 & BALL<<n);
|
80
|
+
}
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
/*
|
85
|
+
Binary <%=name%>.
|
86
|
+
@overload <%=op_map%> other
|
87
|
+
@param [Cumo::NArray,Numeric] other
|
88
|
+
@return [Cumo::NArray] <%=name%> of self and other.
|
89
|
+
*/
|
90
|
+
static VALUE
|
91
|
+
<%=c_func(1)%>(VALUE self, VALUE other)
|
92
|
+
{
|
93
|
+
ndfunc_arg_in_t ain[2] = {{cT,0},{cT,0}};
|
94
|
+
ndfunc_arg_out_t aout[1] = {{cT,0}};
|
95
|
+
ndfunc_t ndf = { <%=c_iter%>, FULL_LOOP, 2, 1, ain, aout };
|
96
|
+
|
97
|
+
return na_ndloop(&ndf, 2, self, other);
|
98
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
#undef int_t
|
2
|
+
#define int_t uint64_t
|
3
|
+
|
4
|
+
void <%="cumo_#{c_iter}_index_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, size_t *idx1, uint64_t n);
|
5
|
+
void <%="cumo_#{c_iter}_stride_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, ssize_t s1, uint64_t n);
|
6
|
+
void <%="cumo_#{c_iter}_index_stride_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, size_t *idx1, ssize_t s2, uint64_t n);
|
7
|
+
void <%="cumo_#{c_iter}_stride_stride_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, ssize_t s1, ssize_t s2, uint64_t n);
|
8
|
+
|
9
|
+
static void
|
10
|
+
<%=c_iter%>(na_loop_t *const lp)
|
11
|
+
{
|
12
|
+
size_t i;
|
13
|
+
BIT_DIGIT *a1;
|
14
|
+
size_t p1;
|
15
|
+
char *p2;
|
16
|
+
ssize_t s1, s2;
|
17
|
+
size_t *idx1;
|
18
|
+
|
19
|
+
INIT_COUNTER(lp, i);
|
20
|
+
INIT_PTR_BIT_IDX(lp, 0, a1, p1, s1, idx1);
|
21
|
+
INIT_PTR(lp, 1, p2, s2);
|
22
|
+
|
23
|
+
if (s2==0) {
|
24
|
+
if (idx1) {
|
25
|
+
<%="cumo_#{c_iter}_index_kernel_launch"%>(p1,p2,a1,idx1,i);
|
26
|
+
} else {
|
27
|
+
<%="cumo_#{c_iter}_stride_kernel_launch"%>(p1,p2,a1,s1,i);
|
28
|
+
}
|
29
|
+
} else {
|
30
|
+
if (idx1) {
|
31
|
+
<%="cumo_#{c_iter}_index_stride_kernel_launch"%>(p1,p2,a1,idx1,s2,i);
|
32
|
+
} else {
|
33
|
+
<%="cumo_#{c_iter}_stride_stride_kernel_launch"%>(p1,p2,a1,s1,s2,i);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
static VALUE
|
39
|
+
<%=c_func(-1)%>_cpu(int argc, VALUE *argv, VALUE self);
|
40
|
+
|
41
|
+
/*
|
42
|
+
Returns the number of bits.
|
43
|
+
If argument is supplied, return Int-array counted along the axes.
|
44
|
+
@overload <%=op_map%>(axis:nil, keepdims:false)
|
45
|
+
@param [Integer,Array,Range] axis (keyword) axes to be counted.
|
46
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
47
|
+
@return [Cumo::UInt64]
|
48
|
+
*/
|
49
|
+
static VALUE
|
50
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
51
|
+
{
|
52
|
+
if (cumo_compatible_mode_enabled_p()) {
|
53
|
+
return <%=c_func(-1)%>_cpu(argc, argv, self);
|
54
|
+
} else {
|
55
|
+
VALUE v, reduce;
|
56
|
+
ndfunc_arg_in_t ain[3] = {{cT,0},{sym_reduce,0},{sym_init,0}};
|
57
|
+
ndfunc_arg_out_t aout[1] = {{cumo_cUInt64,0}};
|
58
|
+
ndfunc_t ndf = { <%=c_iter%>, FULL_LOOP_NIP, 3, 1, ain, aout };
|
59
|
+
|
60
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
61
|
+
v = na_ndloop(&ndf, 3, self, reduce, INT2FIX(0));
|
62
|
+
return v;
|
63
|
+
}
|
64
|
+
}
|
@@ -0,0 +1,88 @@
|
|
1
|
+
#undef int_t
|
2
|
+
#define int_t int64_t
|
3
|
+
|
4
|
+
static void
|
5
|
+
<%=c_iter%>(na_loop_t *const lp)
|
6
|
+
{
|
7
|
+
size_t i;
|
8
|
+
BIT_DIGIT *a1;
|
9
|
+
size_t p1;
|
10
|
+
char *p2;
|
11
|
+
ssize_t s1, s2;
|
12
|
+
size_t *idx1;
|
13
|
+
BIT_DIGIT x=0;
|
14
|
+
int_t y;
|
15
|
+
|
16
|
+
SHOW_SYNCHRONIZE_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
17
|
+
cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
|
18
|
+
|
19
|
+
INIT_COUNTER(lp, i);
|
20
|
+
INIT_PTR_BIT_IDX(lp, 0, a1, p1, s1, idx1);
|
21
|
+
INIT_PTR(lp, 1, p2, s2);
|
22
|
+
if (s2==0) {
|
23
|
+
GET_DATA(p2, int_t, y);
|
24
|
+
if (idx1) {
|
25
|
+
for (; i--;) {
|
26
|
+
LOAD_BIT(a1, p1+*idx1, x);
|
27
|
+
idx1++;
|
28
|
+
if (m_<%=name%>(x)) {
|
29
|
+
y++;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
} else {
|
33
|
+
for (; i--;) {
|
34
|
+
LOAD_BIT(a1, p1, x);
|
35
|
+
p1 += s1;
|
36
|
+
if (m_<%=name%>(x)) {
|
37
|
+
y++;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
*(int_t*)p2 = y;
|
42
|
+
} else {
|
43
|
+
if (idx1) {
|
44
|
+
for (; i--;) {
|
45
|
+
LOAD_BIT(a1, p1+*idx1, x);
|
46
|
+
idx1++;
|
47
|
+
if (m_<%=name%>(x)) {
|
48
|
+
GET_DATA(p2, int_t, y);
|
49
|
+
y++;
|
50
|
+
SET_DATA(p2, int_t, y);
|
51
|
+
}
|
52
|
+
p2+=s2;
|
53
|
+
}
|
54
|
+
} else {
|
55
|
+
for (; i--;) {
|
56
|
+
LOAD_BIT(a1, p1, x);
|
57
|
+
p1+=s1;
|
58
|
+
if (m_<%=name%>(x)) {
|
59
|
+
GET_DATA(p2, int_t, y);
|
60
|
+
y++;
|
61
|
+
SET_DATA(p2, int_t, y);
|
62
|
+
}
|
63
|
+
p2+=s2;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
/*
|
70
|
+
Returns the number of bits.
|
71
|
+
If argument is supplied, return Int-array counted along the axes.
|
72
|
+
@overload <%=op_map%>(axis:nil, keepdims:false)
|
73
|
+
@param [Integer,Array,Range] axis (keyword) axes to be counted.
|
74
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
75
|
+
@return [Cumo::Int64]
|
76
|
+
*/
|
77
|
+
static VALUE
|
78
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
79
|
+
{
|
80
|
+
VALUE v, reduce;
|
81
|
+
ndfunc_arg_in_t ain[3] = {{cT,0},{sym_reduce,0},{sym_init,0}};
|
82
|
+
ndfunc_arg_out_t aout[1] = {{cumo_cInt64,0}};
|
83
|
+
ndfunc_t ndf = { <%=c_iter%>, FULL_LOOP_NIP, 3, 1, ain, aout };
|
84
|
+
|
85
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
86
|
+
v = na_ndloop(&ndf, 3, self, reduce, INT2FIX(0));
|
87
|
+
return rb_funcall(v,rb_intern("extract_cpu"),0);
|
88
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
#undef int_t
|
2
|
+
#define int_t unsigned long long int
|
3
|
+
|
4
|
+
__global__ void <%="cumo_#{c_iter}_index_kernel"%>(size_t p1, char* p2, BIT_DIGIT *a1, size_t *idx1, uint64_t n)
|
5
|
+
{
|
6
|
+
for (uint64_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
7
|
+
BIT_DIGIT x=0;
|
8
|
+
LOAD_BIT(a1, p1 + idx1[i], x);
|
9
|
+
if (m_<%=name%>(x)) {
|
10
|
+
atomicAdd((int_t*)p2, (int_t)1);
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
__global__ void <%="cumo_#{c_iter}_stride_kernel"%>(size_t p1, char* p2, BIT_DIGIT *a1, ssize_t s1, uint64_t n)
|
16
|
+
{
|
17
|
+
for (uint64_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
18
|
+
BIT_DIGIT x=0;
|
19
|
+
LOAD_BIT(a1, p1 + i * s1, x);
|
20
|
+
if (m_<%=name%>(x)) {
|
21
|
+
atomicAdd((int_t*)p2, (int_t)1);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
__global__ void <%="cumo_#{c_iter}_index_stride_kernel"%>(size_t p1, char* p2, BIT_DIGIT *a1, size_t *idx1, ssize_t s2, uint64_t n)
|
27
|
+
{
|
28
|
+
for (uint64_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
29
|
+
BIT_DIGIT x=0;
|
30
|
+
LOAD_BIT(a1, p1 + idx1[i], x);
|
31
|
+
if (m_<%=name%>(x)) {
|
32
|
+
atomicAdd((int_t*)(p2 + i * s2), (int_t)1);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
__global__ void <%="cumo_#{c_iter}_stride_stride_kernel"%>(size_t p1, char* p2, BIT_DIGIT *a1, ssize_t s1, ssize_t s2, uint64_t n)
|
38
|
+
{
|
39
|
+
for (uint64_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
40
|
+
BIT_DIGIT x=0;
|
41
|
+
LOAD_BIT(a1, p1 + i * s1, x);
|
42
|
+
if (m_<%=name%>(x)) {
|
43
|
+
atomicAdd((int_t*)(p2 + i * s2), (int_t)1);
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
void <%="cumo_#{c_iter}_index_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, size_t *idx1, uint64_t n)
|
49
|
+
{
|
50
|
+
size_t gridDim = get_gridDim(n);
|
51
|
+
size_t blockDim = get_blockDim(n);
|
52
|
+
<%="cumo_#{c_iter}_index_kernel"%><<<gridDim, blockDim>>>(p1,p2,a1,idx1,n);
|
53
|
+
}
|
54
|
+
|
55
|
+
void <%="cumo_#{c_iter}_stride_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, ssize_t s1, uint64_t n)
|
56
|
+
{
|
57
|
+
size_t gridDim = get_gridDim(n);
|
58
|
+
size_t blockDim = get_blockDim(n);
|
59
|
+
<%="cumo_#{c_iter}_stride_kernel"%><<<gridDim, blockDim>>>(p1,p2,a1,s1,n);
|
60
|
+
}
|
61
|
+
|
62
|
+
void <%="cumo_#{c_iter}_index_stride_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, size_t *idx1, ssize_t s2, uint64_t n)
|
63
|
+
{
|
64
|
+
size_t gridDim = get_gridDim(n);
|
65
|
+
size_t blockDim = get_blockDim(n);
|
66
|
+
<%="cumo_#{c_iter}_index_stride_kernel"%><<<gridDim, blockDim>>>(p1,p2,a1,idx1,s2,n);
|
67
|
+
}
|
68
|
+
|
69
|
+
void <%="cumo_#{c_iter}_stride_stride_kernel_launch"%>(size_t p1, char *p2, BIT_DIGIT *a1, ssize_t s1, ssize_t s2, uint64_t n)
|
70
|
+
{
|
71
|
+
size_t gridDim = get_gridDim(n);
|
72
|
+
size_t blockDim = get_blockDim(n);
|
73
|
+
<%="cumo_#{c_iter}_stride_stride_kernel"%><<<gridDim, blockDim>>>(p1,p2,a1,s1,s2,n);
|
74
|
+
}
|
75
|
+
|
76
|
+
#undef int_t
|
@@ -0,0 +1,133 @@
|
|
1
|
+
static void
|
2
|
+
<%=c_iter%>(na_loop_t *const lp)
|
3
|
+
{
|
4
|
+
size_t i;
|
5
|
+
BIT_DIGIT *a1, *a2;
|
6
|
+
size_t p1, p2;
|
7
|
+
ssize_t s1, s2;
|
8
|
+
size_t *idx1, *idx2;
|
9
|
+
BIT_DIGIT x=0, y=0;
|
10
|
+
|
11
|
+
// TODO(sonots): CUDA kernelize
|
12
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
13
|
+
cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
|
14
|
+
|
15
|
+
INIT_COUNTER(lp, i);
|
16
|
+
INIT_PTR_BIT_IDX(lp, 0, a1, p1, s1, idx1);
|
17
|
+
INIT_PTR_BIT_IDX(lp, 1, a2, p2, s2, idx2);
|
18
|
+
if (idx2) {
|
19
|
+
if (idx1) {
|
20
|
+
for (; i--;) {
|
21
|
+
LOAD_BIT(a2, p2+*idx2, y);
|
22
|
+
if (y == <%=init_bit%>) {
|
23
|
+
LOAD_BIT(a1, p1+*idx1, x);
|
24
|
+
if (x != <%=init_bit%>) {
|
25
|
+
STORE_BIT(a2, p2+*idx2, x);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
idx1++;
|
29
|
+
idx2++;
|
30
|
+
}
|
31
|
+
} else {
|
32
|
+
for (; i--;) {
|
33
|
+
LOAD_BIT(a2, p2+*idx2, y);
|
34
|
+
if (y == <%=init_bit%>) {
|
35
|
+
LOAD_BIT(a1, p1, x);
|
36
|
+
if (x != <%=init_bit%>) {
|
37
|
+
STORE_BIT(a2, p2+*idx2, x);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
p1 += s1;
|
41
|
+
idx2++;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
} else if (s2) {
|
45
|
+
if (idx1) {
|
46
|
+
for (; i--;) {
|
47
|
+
LOAD_BIT(a2, p2, y);
|
48
|
+
if (y == <%=init_bit%>) {
|
49
|
+
LOAD_BIT(a1, p1+*idx1, x);
|
50
|
+
if (x != <%=init_bit%>) {
|
51
|
+
STORE_BIT(a2, p2, x);
|
52
|
+
}
|
53
|
+
}
|
54
|
+
idx1++;
|
55
|
+
p2 += s2;
|
56
|
+
}
|
57
|
+
} else {
|
58
|
+
for (; i--;) {
|
59
|
+
LOAD_BIT(a2, p2, y);
|
60
|
+
if (y == <%=init_bit%>) {
|
61
|
+
LOAD_BIT(a1, p1, x);
|
62
|
+
if (x != <%=init_bit%>) {
|
63
|
+
STORE_BIT(a2, p2, x);
|
64
|
+
}
|
65
|
+
}
|
66
|
+
p1 += s1;
|
67
|
+
p2 += s2;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
} else {
|
71
|
+
LOAD_BIT(a2, p2, x);
|
72
|
+
if (x != <%=init_bit%>) {
|
73
|
+
return;
|
74
|
+
}
|
75
|
+
if (idx1) {
|
76
|
+
for (; i--;) {
|
77
|
+
LOAD_BIT(a1, p1+*idx1, y);
|
78
|
+
if (y != <%=init_bit%>) {
|
79
|
+
STORE_BIT(a2, p2, y);
|
80
|
+
return;
|
81
|
+
}
|
82
|
+
idx1++;
|
83
|
+
}
|
84
|
+
} else {
|
85
|
+
for (; i--;) {
|
86
|
+
LOAD_BIT(a1, p1, y);
|
87
|
+
if (y != <%=init_bit%>) {
|
88
|
+
STORE_BIT(a2, p2, y);
|
89
|
+
return;
|
90
|
+
}
|
91
|
+
p1 += s1;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
/*
|
98
|
+
<% case name
|
99
|
+
when /^any/ %>
|
100
|
+
Return true if any of bits is one (true).
|
101
|
+
<% when /^all/ %>
|
102
|
+
Return true if all of bits are one (true).
|
103
|
+
<% end %>
|
104
|
+
If argument is supplied, return Bit-array reduced along the axes.
|
105
|
+
@overload <%=op_map%>(axis:nil, keepdims:false)
|
106
|
+
@param [Integer,Array,Range] axis (keyword) axes to be reduced.
|
107
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
108
|
+
@return [Cumo::Bit] .
|
109
|
+
*/
|
110
|
+
static VALUE
|
111
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
112
|
+
{
|
113
|
+
VALUE v, reduce;
|
114
|
+
ndfunc_arg_in_t ain[3] = {{cT,0},{sym_reduce,0},{sym_init,0}};
|
115
|
+
ndfunc_arg_out_t aout[1] = {{cumo_cBit,0}};
|
116
|
+
ndfunc_t ndf = {<%=c_iter%>, FULL_LOOP_NIP, 3,1, ain,aout};
|
117
|
+
|
118
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
119
|
+
v = na_ndloop(&ndf, 3, self, reduce, INT2FIX(<%=init_bit%>));
|
120
|
+
if (argc > 0) {
|
121
|
+
return v;
|
122
|
+
}
|
123
|
+
v = <%=find_tmpl("extract").c_func%>(v);
|
124
|
+
switch (v) {
|
125
|
+
case INT2FIX(0):
|
126
|
+
return Qfalse;
|
127
|
+
case INT2FIX(1):
|
128
|
+
return Qtrue;
|
129
|
+
default:
|
130
|
+
rb_bug("unexpected result");
|
131
|
+
return v;
|
132
|
+
}
|
133
|
+
}
|