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,86 @@
|
|
1
|
+
<% indexer_ops = %w[sum prod min max ptp] %>
|
2
|
+
<% (is_float ? ["","_nan"] : [""]).each do |nan| %>
|
3
|
+
|
4
|
+
<% unless type_name == 'robject' %>
|
5
|
+
//<% unless indexer_ops.include?(name) %>
|
6
|
+
void cumo_<%=type_name%>_<%=name%><%=nan%>_kernel_launch(size_t n, char *p1, ssize_t s1, char *p2);
|
7
|
+
<% else %>
|
8
|
+
void cumo_<%=type_name%>_<%=name%><%=nan%>_kernel_launch(na_reduction_arg_t* arg);
|
9
|
+
<% end %>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
static void
|
13
|
+
<%=c_iter%><%=nan%>(na_loop_t *const lp)
|
14
|
+
{
|
15
|
+
<% if type_name == 'robject' || name == 'kahan_sum' || nan == '_nan' %>
|
16
|
+
{
|
17
|
+
size_t n;
|
18
|
+
char *p1, *p2;
|
19
|
+
ssize_t s1;
|
20
|
+
|
21
|
+
INIT_COUNTER(lp, n);
|
22
|
+
INIT_PTR(lp, 0, p1, s1);
|
23
|
+
p2 = lp->args[1].ptr + lp->args[1].iter[0].pos;
|
24
|
+
|
25
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%><%=nan%>", "<%=type_name%>");
|
26
|
+
*(<%=dtype%>*)p2 = f_<%=name%><%=nan%>(n,p1,s1);
|
27
|
+
}
|
28
|
+
//<% elsif !indexer_ops.include?(name) %>
|
29
|
+
{
|
30
|
+
size_t n;
|
31
|
+
char *p1, *p2;
|
32
|
+
ssize_t s1;
|
33
|
+
|
34
|
+
INIT_COUNTER(lp, n);
|
35
|
+
INIT_PTR(lp, 0, p1, s1);
|
36
|
+
p2 = lp->args[1].ptr + lp->args[1].iter[0].pos;
|
37
|
+
|
38
|
+
cumo_<%=type_name%>_<%=name%><%=nan%>_kernel_launch(n,p1,s1,p2);
|
39
|
+
}
|
40
|
+
<% else %>
|
41
|
+
{
|
42
|
+
// TODO(sonots): How to compute Kahan summation algorithm in parallel?
|
43
|
+
// TODO(sonots): Implement nan CUDA version
|
44
|
+
na_reduction_arg_t arg = na_make_reduction_arg(lp);
|
45
|
+
cumo_<%=type_name%>_<%=name%><%=nan%>_kernel_launch(&arg);
|
46
|
+
}
|
47
|
+
<% end %>
|
48
|
+
}
|
49
|
+
<% end %>
|
50
|
+
|
51
|
+
/*
|
52
|
+
<%=name%> of self.
|
53
|
+
<% if is_float %>
|
54
|
+
@overload <%=name%>(axis:nil, keepdims:false, nan:false)
|
55
|
+
@param [TrueClass] nan If true, apply NaN-aware algorithm (avoid NaN for sum/mean etc, or, return NaN for min/max etc).
|
56
|
+
<% else %>
|
57
|
+
@overload <%=name%>(axis:nil, keepdims:false)
|
58
|
+
<% end %>
|
59
|
+
@param [Numeric,Array,Range] axis (keyword) Affected dimensions.
|
60
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
61
|
+
@return [Cumo::<%=class_name%>] returns result of <%=name%>.
|
62
|
+
*/
|
63
|
+
static VALUE
|
64
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
65
|
+
{
|
66
|
+
VALUE v, reduce;
|
67
|
+
ndfunc_arg_in_t ain[2] = {{cT,0},{sym_reduce,0}};
|
68
|
+
ndfunc_arg_out_t aout[1] = {{<%=result_class%>,0}};
|
69
|
+
//<% if type_name == 'robject' || !indexer_ops.include?(name) %>
|
70
|
+
ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP_NIP|NDF_FLAT_REDUCE, 2, 1, ain, aout };
|
71
|
+
<% else %>
|
72
|
+
ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP_NIP|NDF_FLAT_REDUCE|NDF_INDEXER_LOOP, 2, 1, ain, aout };
|
73
|
+
<% end %>
|
74
|
+
|
75
|
+
<% if is_float %>
|
76
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_nan);
|
77
|
+
<% else %>
|
78
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
79
|
+
<% end %>
|
80
|
+
v = na_ndloop(&ndf, 2, self, reduce);
|
81
|
+
<% if result_class == "cT" %>
|
82
|
+
return <%=type_name%>_extract(v);
|
83
|
+
<% else %>
|
84
|
+
return rb_funcall(v,rb_intern("extract"),0);
|
85
|
+
<% end %>
|
86
|
+
}
|
@@ -0,0 +1,121 @@
|
|
1
|
+
//<% (is_float ? ["","_nan"] : [""]).each do |nan| %>
|
2
|
+
|
3
|
+
<% unless type_name == 'robject' %>
|
4
|
+
void <%="cumo_#{type_name}_#{name}#{nan}_reduce_kernel_launch"%>(char *p1, char *p2, char *p3, ssize_t s1, ssize_t s2, uint64_t n);
|
5
|
+
void <%="cumo_#{type_name}_#{name}#{nan}_kernel_launch"%>(char *p1, char *p2, char *p3, ssize_t s1, ssize_t s2, ssize_t s3, uint64_t n);
|
6
|
+
<% end %>
|
7
|
+
|
8
|
+
static void
|
9
|
+
<%=c_iter%><%=nan%>(na_loop_t *const lp)
|
10
|
+
{
|
11
|
+
size_t n;
|
12
|
+
char *p1, *p2, *p3;
|
13
|
+
ssize_t s1, s2, s3;
|
14
|
+
|
15
|
+
INIT_COUNTER(lp, n);
|
16
|
+
INIT_PTR(lp, 0, p1, s1);
|
17
|
+
INIT_PTR(lp, 1, p2, s2);
|
18
|
+
INIT_PTR(lp, 2, p3, s3);
|
19
|
+
|
20
|
+
<% if type_name == 'robject' %>
|
21
|
+
{
|
22
|
+
size_t i;
|
23
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%><%=nan%>", "<%=type_name%>");
|
24
|
+
if (s3==0) {
|
25
|
+
dtype z;
|
26
|
+
// Reduce loop
|
27
|
+
GET_DATA(p3,dtype,z);
|
28
|
+
for (i=0; i<n; i++) {
|
29
|
+
dtype x, y;
|
30
|
+
GET_DATA_STRIDE(p1,s1,dtype,x);
|
31
|
+
GET_DATA_STRIDE(p2,s2,dtype,y);
|
32
|
+
m_<%=name%><%=nan%>(x,y,z);
|
33
|
+
}
|
34
|
+
SET_DATA(p3,dtype,z);
|
35
|
+
return;
|
36
|
+
} else {
|
37
|
+
for (i=0; i<n; i++) {
|
38
|
+
dtype x, y, z;
|
39
|
+
GET_DATA_STRIDE(p1,s1,dtype,x);
|
40
|
+
GET_DATA_STRIDE(p2,s2,dtype,y);
|
41
|
+
GET_DATA(p3,dtype,z);
|
42
|
+
m_<%=name%><%=nan%>(x,y,z);
|
43
|
+
SET_DATA_STRIDE(p3,s3,dtype,z);
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
<% else %>
|
48
|
+
{
|
49
|
+
if (s3==0) {
|
50
|
+
<%="cumo_#{type_name}_#{name}#{nan}_reduce_kernel_launch"%>(p1,p2,p3,s1,s2,n);
|
51
|
+
return;
|
52
|
+
} else {
|
53
|
+
<%="cumo_#{type_name}_#{name}#{nan}_kernel_launch"%>(p1,p2,p3,s1,s2,s3,n);
|
54
|
+
}
|
55
|
+
}
|
56
|
+
<% end %>
|
57
|
+
}
|
58
|
+
//<% end %>
|
59
|
+
|
60
|
+
static VALUE
|
61
|
+
<%=c_func%>_self(int argc, VALUE *argv, VALUE self)
|
62
|
+
{
|
63
|
+
VALUE v, reduce;
|
64
|
+
VALUE naryv[2];
|
65
|
+
ndfunc_arg_in_t ain[4] = {{cT,0},{cT,0},{sym_reduce,0},{sym_init,0}};
|
66
|
+
ndfunc_arg_out_t aout[1] = {{cT,0}};
|
67
|
+
ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP_NIP, 4, 1, ain, aout };
|
68
|
+
|
69
|
+
if (argc < 1) {
|
70
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for >=1)",argc);
|
71
|
+
}
|
72
|
+
// should fix below: [self.ndim,other.ndim].max or?
|
73
|
+
naryv[0] = self;
|
74
|
+
naryv[1] = argv[0];
|
75
|
+
//<% if is_float %>
|
76
|
+
reduce = na_reduce_dimension(argc-1, argv+1, 2, naryv, &ndf, <%=c_iter%>_nan);
|
77
|
+
//<% else %>
|
78
|
+
reduce = na_reduce_dimension(argc-1, argv+1, 2, naryv, &ndf, 0);
|
79
|
+
//<% end %>
|
80
|
+
|
81
|
+
v = na_ndloop(&ndf, 4, self, argv[0], reduce, m_<%=name%>_init);
|
82
|
+
return <%=type_name%>_extract(v);
|
83
|
+
}
|
84
|
+
|
85
|
+
/*
|
86
|
+
Binary <%=name%>.
|
87
|
+
|
88
|
+
<% if is_float %>
|
89
|
+
@overload <%=op_map%>(other, axis:nil, keepdims:false, nan:false)
|
90
|
+
<% else %>
|
91
|
+
@overload <%=op_map%>(other, axis:nil, keepdims:false)
|
92
|
+
<% end %>
|
93
|
+
@param [Cumo::NArray,Numeric] other
|
94
|
+
@param [Numeric,Array,Range] axis (keyword) Affected dimensions.
|
95
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
96
|
+
<% if is_float %>
|
97
|
+
@param [TrueClass] nan (keyword) If true, apply NaN-aware algorithm (avoid NaN if exists).
|
98
|
+
<% end %>
|
99
|
+
@return [Cumo::NArray] <%=name%> of self and other.
|
100
|
+
*/
|
101
|
+
static VALUE
|
102
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
103
|
+
{
|
104
|
+
//<% if !is_object %>
|
105
|
+
VALUE klass, v;
|
106
|
+
//<% end %>
|
107
|
+
if (argc < 1) {
|
108
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for >=1)",argc);
|
109
|
+
}
|
110
|
+
//<% if is_object %>
|
111
|
+
return <%=c_func%>_self(argc, argv, self);
|
112
|
+
//<% else %>
|
113
|
+
klass = na_upcast(CLASS_OF(self),CLASS_OF(argv[0]));
|
114
|
+
if (klass==cT) {
|
115
|
+
return <%=c_func%>_self(argc, argv, self);
|
116
|
+
} else {
|
117
|
+
v = rb_funcall(klass, id_cast, 1, self);
|
118
|
+
return rb_funcall2(v, rb_intern("<%=name%>"), argc, argv);
|
119
|
+
}
|
120
|
+
//<% end %>
|
121
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
<% unless defined?($cumo_narray_gen_tmpl_accum_binary_kernel_included) %>
|
2
|
+
<% $cumo_narray_gen_tmpl_accum_binary_kernel_included = 1 %>
|
3
|
+
|
4
|
+
<% unless type_name == 'robject' %>
|
5
|
+
//<% (is_float ? ["","_nan"] : [""]).each do |nan| %>
|
6
|
+
|
7
|
+
#if defined(__cplusplus)
|
8
|
+
#if 0
|
9
|
+
{ /* satisfy cc-mode */
|
10
|
+
#endif
|
11
|
+
} /* extern "C" { */
|
12
|
+
#endif
|
13
|
+
|
14
|
+
template<typename Iterator1, typename Iterator2>
|
15
|
+
__global__ void <%="cumo_#{type_name}_mulsum#{nan}_reduce_kernel"%>(Iterator1 p1_begin, Iterator1 p1_end, Iterator2 p2_begin, dtype* p3)
|
16
|
+
{
|
17
|
+
dtype init = m_zero;
|
18
|
+
*p3 = thrust::inner_product(thrust::cuda::par, p1_begin, p1_end, p2_begin, init, cumo_thrust_plus(), cumo_thrust_multiplies<%= "_mulsum#{nan}" unless nan.empty? %>());
|
19
|
+
}
|
20
|
+
|
21
|
+
__global__ void <%="cumo_#{type_name}_mulsum#{nan}_kernel"%>(char *p1, char *p2, char *p3, ssize_t s1, ssize_t s2, ssize_t s3, uint64_t n)
|
22
|
+
{
|
23
|
+
for (size_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
24
|
+
m_<%=name%><%=nan%>(*(dtype*)(p1+(i*s1)), *(dtype*)(p2+(i*s2)), *(dtype*)(p3+(i*s3)));
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
#if defined(__cplusplus)
|
29
|
+
extern "C" {
|
30
|
+
#if 0
|
31
|
+
} /* satisfy cc-mode */
|
32
|
+
#endif
|
33
|
+
#endif
|
34
|
+
|
35
|
+
void <%="cumo_#{type_name}_mulsum#{nan}_reduce_kernel_launch"%>(char *p1, char *p2, char *p3, ssize_t s1, ssize_t s2, uint64_t n)
|
36
|
+
{
|
37
|
+
ssize_t s1_idx = s1 / sizeof(dtype);
|
38
|
+
ssize_t s2_idx = s2 / sizeof(dtype);
|
39
|
+
thrust::device_ptr<dtype> p1_begin = thrust::device_pointer_cast((dtype*)p1);
|
40
|
+
thrust::device_ptr<dtype> p1_end = thrust::device_pointer_cast(((dtype*)p1) + n * s1_idx);
|
41
|
+
thrust::device_ptr<dtype> p2_begin = thrust::device_pointer_cast((dtype*)p2);
|
42
|
+
thrust::device_ptr<dtype> p2_end = thrust::device_pointer_cast(((dtype*)p2) + n * s2_idx);
|
43
|
+
if (s1_idx > 1 || s2_idx > 1) {
|
44
|
+
cumo_thrust_strided_range<thrust::device_vector<dtype>::iterator> r1(p1_begin, p1_end, s1_idx);
|
45
|
+
cumo_thrust_strided_range<thrust::device_vector<dtype>::iterator> r2(p2_begin, p2_end, s2_idx);
|
46
|
+
<%="cumo_#{type_name}_mulsum#{nan}_reduce_kernel"%><<<1,1>>>(r1.begin(), r1.end(), r2.begin(), (dtype*)p3);
|
47
|
+
} else {
|
48
|
+
// ref. https://github.com/thrust/thrust/blob/master/examples/cuda/async_reduce.cu
|
49
|
+
<%="cumo_#{type_name}_mulsum#{nan}_reduce_kernel"%><<<1,1>>>(p1_begin, p1_end, p2_begin, (dtype*)p3);
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
void <%="cumo_#{type_name}_mulsum#{nan}_kernel_launch"%>(char *p1, char *p2, char *p3, ssize_t s1, ssize_t s2, ssize_t s3, uint64_t n)
|
54
|
+
{
|
55
|
+
size_t gridDim = get_gridDim(n);
|
56
|
+
size_t blockDim = get_blockDim(n);
|
57
|
+
<%="cumo_#{type_name}_mulsum#{nan}_kernel"%><<<gridDim, blockDim>>>(p1,p2,p3,s1,s2,s3,n);
|
58
|
+
}
|
59
|
+
//<% end %>
|
60
|
+
<% end %>
|
61
|
+
<% end %>
|
@@ -0,0 +1,119 @@
|
|
1
|
+
<% (is_float ? ["","_nan"] : [""]).each do |nan| %>
|
2
|
+
|
3
|
+
<% [64,32].each do |i| %>
|
4
|
+
<% unless type_name == 'robject' %>
|
5
|
+
void cumo_<%=type_name%>_<%=name%><%=nan%>_int<%=i%>_kernel_launch(na_reduction_arg_t* arg);
|
6
|
+
<% end %>
|
7
|
+
|
8
|
+
#define idx_t int<%=i%>_t
|
9
|
+
static void
|
10
|
+
<%=c_iter%>_index<%=i%><%=nan%>(na_loop_t *const lp)
|
11
|
+
{
|
12
|
+
// TODO(sonots): Support nan in CUDA
|
13
|
+
<% if type_name == 'robject' || nan == '_nan' %>
|
14
|
+
{
|
15
|
+
size_t n, idx;
|
16
|
+
char *d_ptr, *i_ptr, *o_ptr;
|
17
|
+
ssize_t d_step, i_step;
|
18
|
+
|
19
|
+
INIT_COUNTER(lp, n);
|
20
|
+
INIT_PTR(lp, 0, d_ptr, d_step);
|
21
|
+
INIT_PTR(lp, 1, i_ptr, i_step);
|
22
|
+
o_ptr = NDL_PTR(lp,2);
|
23
|
+
|
24
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%><%=nan%>", "<%=type_name%>");
|
25
|
+
idx = f_<%=name%><%=nan%>(n,d_ptr,d_step);
|
26
|
+
*(idx_t*)o_ptr = *(idx_t*)(i_ptr + i_step * idx);
|
27
|
+
}
|
28
|
+
<% else %>
|
29
|
+
{
|
30
|
+
na_reduction_arg_t arg = na_make_reduction_arg(lp);
|
31
|
+
cumo_<%=type_name%>_<%=name%><%=nan%>_int<%=i%>_kernel_launch(&arg);
|
32
|
+
}
|
33
|
+
<% end %>
|
34
|
+
}
|
35
|
+
#undef idx_t
|
36
|
+
<% end;end %>
|
37
|
+
|
38
|
+
/*
|
39
|
+
<%=name%>. Return an index of result.
|
40
|
+
<% if is_float %>
|
41
|
+
@overload <%=name%>(axis:nil, nan:false)
|
42
|
+
@param [TrueClass] nan If true, apply NaN-aware algorithm (return NaN posision if exist).
|
43
|
+
<% else %>
|
44
|
+
@overload <%=name%>(axis:nil)
|
45
|
+
<% end %>
|
46
|
+
@param [Numeric,Array,Range] axis Affected dimensions.
|
47
|
+
@return [Integer,Cumo::Int] returns result index of <%=name%>.
|
48
|
+
@example
|
49
|
+
Cumo::NArray[3,4,1,2].min_index => 3
|
50
|
+
*/
|
51
|
+
static VALUE
|
52
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
53
|
+
{
|
54
|
+
//<% if type_name == 'robject' %>
|
55
|
+
{
|
56
|
+
narray_t *na;
|
57
|
+
VALUE idx, reduce;
|
58
|
+
ndfunc_arg_in_t ain[3] = {{Qnil,0},{Qnil,0},{sym_reduce,0}};
|
59
|
+
ndfunc_arg_out_t aout[1] = {{0,0,0}};
|
60
|
+
ndfunc_t ndf = {0, STRIDE_LOOP_NIP|NDF_FLAT_REDUCE|NDF_EXTRACT, 3,1, ain,aout};
|
61
|
+
|
62
|
+
GetNArray(self,na);
|
63
|
+
if (na->ndim==0) {
|
64
|
+
return INT2FIX(0);
|
65
|
+
}
|
66
|
+
if (na->size > (~(u_int32_t)0)) {
|
67
|
+
aout[0].type = cumo_cInt64;
|
68
|
+
idx = nary_new(cumo_cInt64, na->ndim, na->shape);
|
69
|
+
ndf.func = <%=c_iter%>_index64;
|
70
|
+
<% if is_float %>
|
71
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_index64_nan);
|
72
|
+
<% else %>
|
73
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
74
|
+
<% end %>
|
75
|
+
} else {
|
76
|
+
aout[0].type = cumo_cInt32;
|
77
|
+
idx = nary_new(cumo_cInt32, na->ndim, na->shape);
|
78
|
+
ndf.func = <%=c_iter%>_index32;
|
79
|
+
<% if is_float %>
|
80
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_index32_nan);
|
81
|
+
<% else %>
|
82
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
83
|
+
<% end %>
|
84
|
+
}
|
85
|
+
rb_funcall(idx, rb_intern("seq"), 0);
|
86
|
+
|
87
|
+
return na_ndloop(&ndf, 3, self, idx, reduce);
|
88
|
+
}
|
89
|
+
<% else %>
|
90
|
+
{
|
91
|
+
narray_t *na;
|
92
|
+
VALUE reduce;
|
93
|
+
ndfunc_arg_in_t ain[2] = {{Qnil,0},{sym_reduce,0}};
|
94
|
+
ndfunc_arg_out_t aout[1] = {{0,0,0}};
|
95
|
+
ndfunc_t ndf = {0, STRIDE_LOOP_NIP|NDF_FLAT_REDUCE|NDF_EXTRACT|NDF_INDEXER_LOOP, 2,1, ain,aout};
|
96
|
+
|
97
|
+
GetNArray(self,na);
|
98
|
+
if (na->size > (~(u_int32_t)0)) {
|
99
|
+
aout[0].type = cumo_cInt64;
|
100
|
+
ndf.func = <%=c_iter%>_index64;
|
101
|
+
<% if is_float %>
|
102
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_index64_nan);
|
103
|
+
<% else %>
|
104
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
105
|
+
<% end %>
|
106
|
+
} else {
|
107
|
+
aout[0].type = cumo_cInt32;
|
108
|
+
ndf.func = <%=c_iter%>_index32;
|
109
|
+
<% if is_float %>
|
110
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_index32_nan);
|
111
|
+
<% else %>
|
112
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
113
|
+
<% end %>
|
114
|
+
}
|
115
|
+
|
116
|
+
return na_ndloop(&ndf, 2, self, reduce);
|
117
|
+
}
|
118
|
+
<% end %>
|
119
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<% unless defined?($cumo_narray_gen_tmpl_accum_index_kernel_included) %>
|
2
|
+
<% $cumo_narray_gen_tmpl_accum_index_kernel_included = 1 %>
|
3
|
+
<% unless type_name == 'robject' %>
|
4
|
+
|
5
|
+
<% [64,32].each do |i| %>
|
6
|
+
#define idx_t int<%=i%>_t
|
7
|
+
|
8
|
+
#if defined(__cplusplus)
|
9
|
+
#if 0
|
10
|
+
{ /* satisfy cc-mode */
|
11
|
+
#endif
|
12
|
+
} /* extern "C" { */
|
13
|
+
#endif
|
14
|
+
|
15
|
+
struct cumo_<%=type_name%>_min_index_int<%=i%>_impl {
|
16
|
+
struct MinAndArgMin {
|
17
|
+
dtype min;
|
18
|
+
idx_t argmin;
|
19
|
+
};
|
20
|
+
__device__ MinAndArgMin Identity() { return {DATA_MAX, 0}; }
|
21
|
+
__device__ MinAndArgMin MapIn(dtype in, idx_t index) { return {in, index}; }
|
22
|
+
__device__ void Reduce(MinAndArgMin next, MinAndArgMin& accum) {
|
23
|
+
if (accum.min > next.min) {
|
24
|
+
accum = next;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
__device__ idx_t MapOut(MinAndArgMin accum) { return accum.argmin; }
|
28
|
+
};
|
29
|
+
|
30
|
+
struct cumo_<%=type_name%>_max_index_int<%=i%>_impl {
|
31
|
+
struct MaxAndArgMax {
|
32
|
+
dtype max;
|
33
|
+
idx_t argmax;
|
34
|
+
};
|
35
|
+
__device__ MaxAndArgMax Identity() { return {DATA_MIN, 0}; }
|
36
|
+
__device__ MaxAndArgMax MapIn(dtype in, idx_t index) { return {in, index}; }
|
37
|
+
__device__ void Reduce(MaxAndArgMax next, MaxAndArgMax& accum) {
|
38
|
+
if (accum.max < next.max) {
|
39
|
+
accum = next;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
__device__ idx_t MapOut(MaxAndArgMax accum) { return accum.argmax; }
|
43
|
+
};
|
44
|
+
|
45
|
+
#if defined(__cplusplus)
|
46
|
+
extern "C" {
|
47
|
+
#if 0
|
48
|
+
} /* satisfy cc-mode */
|
49
|
+
#endif
|
50
|
+
#endif
|
51
|
+
|
52
|
+
void cumo_<%=type_name%>_min_index_int<%=i%>_kernel_launch(na_reduction_arg_t* arg)
|
53
|
+
{
|
54
|
+
cumo_reduce<dtype, idx_t, cumo_<%=type_name%>_min_index_int<%=i%>_impl>(*arg, cumo_<%=type_name%>_min_index_int<%=i%>_impl{});
|
55
|
+
}
|
56
|
+
|
57
|
+
void cumo_<%=type_name%>_max_index_int<%=i%>_kernel_launch(na_reduction_arg_t* arg)
|
58
|
+
{
|
59
|
+
cumo_reduce<dtype, idx_t, cumo_<%=type_name%>_max_index_int<%=i%>_impl>(*arg, cumo_<%=type_name%>_max_index_int<%=i%>_impl{});
|
60
|
+
}
|
61
|
+
|
62
|
+
#undef idx_t
|
63
|
+
<% end %>
|
64
|
+
|
65
|
+
<% end %>
|
66
|
+
<% end %>
|