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,24 @@
|
|
1
|
+
#include "cumo/narray_kernel.h"
|
2
|
+
<% unless type_name == 'robject' %>
|
3
|
+
#include "cumo/indexer.h"
|
4
|
+
#include "cumo/reduce_kernel.h"
|
5
|
+
<% end %>
|
6
|
+
#include <<%="cumo/types/#{type_name}_kernel.h"%>>
|
7
|
+
|
8
|
+
#if defined(__cplusplus)
|
9
|
+
extern "C" {
|
10
|
+
#if 0
|
11
|
+
} /* satisfy cc-mode */
|
12
|
+
#endif
|
13
|
+
#endif
|
14
|
+
|
15
|
+
<% children.each do |c|%>
|
16
|
+
<%= "#{c.result}\n\n" %>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
#if defined(__cplusplus)
|
20
|
+
#if 0
|
21
|
+
{ /* satisfy cc-mode */
|
22
|
+
#endif
|
23
|
+
} /* extern "C" { */
|
24
|
+
#endif
|
@@ -0,0 +1,102 @@
|
|
1
|
+
typedef struct {
|
2
|
+
seq_data_t beg;
|
3
|
+
seq_data_t step;
|
4
|
+
seq_data_t base;
|
5
|
+
seq_count_t count;
|
6
|
+
} logseq_opt_t;
|
7
|
+
|
8
|
+
<% unless is_object %>
|
9
|
+
void <%="cumo_#{c_iter}_index_kernel_launch"%>(char *p1, size_t* idx1, seq_data_t beg, seq_data_t step, seq_data_t base, seq_count_t c, uint64_t n);
|
10
|
+
void <%="cumo_#{c_iter}_stride_kernel_launch"%>(char *p1, ssize_t s1, seq_data_t beg, seq_data_t step, seq_data_t base, seq_count_t c, uint64_t n);
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
static void
|
14
|
+
<%=c_iter%>(na_loop_t *const lp)
|
15
|
+
{
|
16
|
+
size_t i;
|
17
|
+
char *p1;
|
18
|
+
ssize_t s1;
|
19
|
+
size_t *idx1;
|
20
|
+
seq_data_t beg, step, base;
|
21
|
+
seq_count_t c;
|
22
|
+
logseq_opt_t *g;
|
23
|
+
|
24
|
+
INIT_COUNTER(lp, i);
|
25
|
+
INIT_PTR_IDX(lp, 0, p1, s1, idx1);
|
26
|
+
g = (logseq_opt_t*)(lp->opt_ptr);
|
27
|
+
beg = g->beg;
|
28
|
+
step = g->step;
|
29
|
+
base = g->base;
|
30
|
+
c = g->count;
|
31
|
+
<% if is_object %>
|
32
|
+
{
|
33
|
+
dtype x;
|
34
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
35
|
+
if (idx1) {
|
36
|
+
for (; i--;) {
|
37
|
+
x = f_seq(beg,step,c++);
|
38
|
+
*(dtype*)(p1+*idx1) = m_pow(base,x);
|
39
|
+
idx1++;
|
40
|
+
}
|
41
|
+
} else {
|
42
|
+
for (; i--;) {
|
43
|
+
x = f_seq(beg,step,c++);
|
44
|
+
*(dtype*)(p1) = m_pow(base,x);
|
45
|
+
p1 += s1;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
g->count = c;
|
49
|
+
}
|
50
|
+
<% else %>
|
51
|
+
{
|
52
|
+
size_t n = i;
|
53
|
+
if (idx1) {
|
54
|
+
<%="cumo_#{c_iter}_index_kernel_launch"%>(p1,idx1,beg,step,base,c,n);
|
55
|
+
} else {
|
56
|
+
<%="cumo_#{c_iter}_stride_kernel_launch"%>(p1,s1,beg,step,base,c,n);
|
57
|
+
}
|
58
|
+
g->count += n;
|
59
|
+
}
|
60
|
+
<% end %>
|
61
|
+
}
|
62
|
+
|
63
|
+
/*
|
64
|
+
Set logarithmic sequence of numbers to self. The sequence is obtained from
|
65
|
+
base**(beg+i*step)
|
66
|
+
where i is 1-dimensional index.
|
67
|
+
Applicable classes: DFloat, SFloat, DComplex, SCopmplex.
|
68
|
+
|
69
|
+
@overload logseq(beg,step,[base])
|
70
|
+
@param [Numeric] beg The begining of sequence.
|
71
|
+
@param [Numeric] step The step of sequence.
|
72
|
+
@param [Numeric] base The base of log space. (default=10)
|
73
|
+
@return [Cumo::<%=class_name%>] self.
|
74
|
+
|
75
|
+
@example
|
76
|
+
Cumo::DFloat.new(5).logseq(4,-1,2)
|
77
|
+
=> Cumo::DFloat#shape=[5]
|
78
|
+
[16, 8, 4, 2, 1]
|
79
|
+
Cumo::DComplex.new(5).logseq(0,1i*Math::PI/3,Math::E)
|
80
|
+
=> Cumo::DComplex#shape=[5]
|
81
|
+
[1+7.26156e-310i, 0.5+0.866025i, -0.5+0.866025i, -1+1.22465e-16i, ...]
|
82
|
+
*/
|
83
|
+
static VALUE
|
84
|
+
<%=c_func(-1)%>(int argc, VALUE *args, VALUE self)
|
85
|
+
{
|
86
|
+
logseq_opt_t *g;
|
87
|
+
VALUE vbeg, vstep, vbase;
|
88
|
+
ndfunc_arg_in_t ain[1] = {{OVERWRITE,0}};
|
89
|
+
ndfunc_t ndf = {<%=c_iter%>, FULL_LOOP, 1,0, ain,0};
|
90
|
+
|
91
|
+
g = ALLOCA_N(logseq_opt_t,1);
|
92
|
+
rb_scan_args(argc, args, "21", &vbeg, &vstep, &vbase);
|
93
|
+
g->beg = m_num_to_data(vbeg);
|
94
|
+
g->step = m_num_to_data(vstep);
|
95
|
+
if (vbase==Qnil) {
|
96
|
+
g->base = m_from_real(10);
|
97
|
+
} else {
|
98
|
+
g->base = m_num_to_data(vbase);
|
99
|
+
}
|
100
|
+
na_ndloop3(&ndf, g, 1, self);
|
101
|
+
return self;
|
102
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<% unless is_object %>
|
2
|
+
__global__ void <%="cumo_#{c_iter}_index_kernel"%>(char *p1, size_t* idx1, seq_data_t beg, seq_data_t step, seq_data_t base, seq_count_t c, uint64_t n)
|
3
|
+
{
|
4
|
+
for (uint64_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
5
|
+
dtype x = f_seq(beg,step,c+i);
|
6
|
+
*(dtype*)(p1+idx1[i]) = m_pow(base,x);
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
__global__ void <%="cumo_#{c_iter}_stride_kernel"%>(char *p1, size_t s1, seq_data_t beg, seq_data_t step, seq_data_t base, seq_count_t c, uint64_t n)
|
11
|
+
{
|
12
|
+
for (uint64_t i = blockIdx.x * blockDim.x + threadIdx.x; i < n; i += blockDim.x * gridDim.x) {
|
13
|
+
dtype x = f_seq(beg,step,c+i);
|
14
|
+
*(dtype*)(p1+(i*s1)) = m_pow(base,x);
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
void <%="cumo_#{c_iter}_index_kernel_launch"%>(char *p1, size_t* idx1, seq_data_t beg, seq_data_t step, seq_data_t base, seq_count_t c, uint64_t n)
|
19
|
+
{
|
20
|
+
size_t gridDim = get_gridDim(n);
|
21
|
+
size_t blockDim = get_blockDim(n);
|
22
|
+
<%="cumo_#{c_iter}_index_kernel"%><<<gridDim, blockDim>>>(p1,idx1,beg,step,base,c,n);
|
23
|
+
}
|
24
|
+
|
25
|
+
void <%="cumo_#{c_iter}_stride_kernel_launch"%>(char *p1, ssize_t s1, seq_data_t beg, seq_data_t step, seq_data_t base, seq_count_t c, uint64_t n)
|
26
|
+
{
|
27
|
+
size_t gridDim = get_gridDim(n);
|
28
|
+
size_t blockDim = get_blockDim(n);
|
29
|
+
<%="cumo_#{c_iter}_stride_kernel"%><<<gridDim, blockDim>>>(p1,s1,beg,step,base,c,n);
|
30
|
+
}
|
31
|
+
<% end %>
|
@@ -0,0 +1,98 @@
|
|
1
|
+
static inline dtype
|
2
|
+
yield_map_with_index(dtype x, size_t *c, VALUE *a, int nd, int md)
|
3
|
+
{
|
4
|
+
int j;
|
5
|
+
VALUE y;
|
6
|
+
|
7
|
+
a[0] = m_data_to_num(x);
|
8
|
+
for (j=0; j<=nd; j++) {
|
9
|
+
a[j+1] = SIZET2NUM(c[j]);
|
10
|
+
}
|
11
|
+
y = rb_yield(rb_ary_new4(md,a));
|
12
|
+
return m_num_to_data(y);
|
13
|
+
}
|
14
|
+
|
15
|
+
static void
|
16
|
+
<%=c_iter%>(na_loop_t *const lp)
|
17
|
+
{
|
18
|
+
size_t i;
|
19
|
+
char *p1, *p2;
|
20
|
+
ssize_t s1, s2;
|
21
|
+
size_t *idx1, *idx2;
|
22
|
+
dtype x;
|
23
|
+
VALUE *a;
|
24
|
+
size_t *c;
|
25
|
+
int nd, md;
|
26
|
+
|
27
|
+
c = (size_t*)(lp->opt_ptr);
|
28
|
+
nd = lp->ndim;
|
29
|
+
if (nd > 0) {nd--;}
|
30
|
+
md = nd + 2;
|
31
|
+
a = ALLOCA_N(VALUE,md);
|
32
|
+
|
33
|
+
INIT_COUNTER(lp, i);
|
34
|
+
INIT_PTR_IDX(lp, 0, p1, s1, idx1);
|
35
|
+
INIT_PTR_IDX(lp, 1, p2, s2, idx2);
|
36
|
+
|
37
|
+
SHOW_SYNCHRONIZE_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
38
|
+
cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
|
39
|
+
|
40
|
+
c[nd] = 0;
|
41
|
+
if (idx1) {
|
42
|
+
if (idx2) {
|
43
|
+
for (; i--;) {
|
44
|
+
GET_DATA_INDEX(p1,idx1,dtype,x);
|
45
|
+
x = yield_map_with_index(x,c,a,nd,md);
|
46
|
+
SET_DATA_INDEX(p2,idx2,dtype,x);
|
47
|
+
c[nd]++;
|
48
|
+
}
|
49
|
+
} else {
|
50
|
+
for (; i--;) {
|
51
|
+
GET_DATA_INDEX(p1,idx1,dtype,x);
|
52
|
+
x = yield_map_with_index(x,c,a,nd,md);
|
53
|
+
SET_DATA_STRIDE(p2,s2,dtype,x);
|
54
|
+
c[nd]++;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
} else {
|
58
|
+
if (idx2) {
|
59
|
+
for (; i--;) {
|
60
|
+
GET_DATA_STRIDE(p1,s1,dtype,x);
|
61
|
+
x = yield_map_with_index(x,c,a,nd,md);
|
62
|
+
SET_DATA_INDEX(p2,idx2,dtype,x);
|
63
|
+
c[nd]++;
|
64
|
+
}
|
65
|
+
} else {
|
66
|
+
for (; i--;) {
|
67
|
+
GET_DATA_STRIDE(p1,s1,dtype,x);
|
68
|
+
x = yield_map_with_index(x,c,a,nd,md);
|
69
|
+
SET_DATA_STRIDE(p2,s2,dtype,x);
|
70
|
+
c[nd]++;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
/*
|
77
|
+
Invokes the given block once for each element of self,
|
78
|
+
passing that element and indices along each axis as parameters.
|
79
|
+
Creates a new NArray containing the values returned by the block.
|
80
|
+
Inplace option is allowed, i.e., `nary.inplace.map` overwrites `nary`.
|
81
|
+
|
82
|
+
@overload <%=name%>
|
83
|
+
|
84
|
+
For a block {|x,i,j,...| ... }
|
85
|
+
@yield [x,i,j,...] x is an element, i,j,... are multidimensional indices.
|
86
|
+
|
87
|
+
@return [Cumo::NArray] mapped array
|
88
|
+
|
89
|
+
*/
|
90
|
+
static VALUE
|
91
|
+
<%=c_func(0)%>(VALUE self)
|
92
|
+
{
|
93
|
+
ndfunc_arg_in_t ain[1] = {{Qnil,0}};
|
94
|
+
ndfunc_arg_out_t aout[1] = {{cT,0}};
|
95
|
+
ndfunc_t ndf = {<%=c_iter%>, FULL_LOOP, 1,1, ain,aout};
|
96
|
+
|
97
|
+
return na_ndloop_with_index(&ndf, 1, self);
|
98
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<% (is_float ? ["_ignan","_prnan"] : [""]).each do |j| %>
|
2
|
+
static void
|
3
|
+
<%=c_iter%><%=j%>(na_loop_t *const lp)
|
4
|
+
{
|
5
|
+
size_t n;
|
6
|
+
char *p1, *p2;
|
7
|
+
dtype *buf;
|
8
|
+
|
9
|
+
INIT_COUNTER(lp, n);
|
10
|
+
p1 = (lp->args[0]).ptr + (lp->args[0].iter[0]).pos;
|
11
|
+
p2 = (lp->args[1]).ptr + (lp->args[1].iter[0]).pos;
|
12
|
+
buf = (dtype*)p1;
|
13
|
+
|
14
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%><%=j%>", "<%=type_name%>");
|
15
|
+
<%=type_name%>_qsort<%=j%>(buf, n, sizeof(dtype));
|
16
|
+
|
17
|
+
<% if is_float %>
|
18
|
+
for (; n; n--) {
|
19
|
+
if (!isnan(buf[n-1])) break;
|
20
|
+
}
|
21
|
+
<% end %>
|
22
|
+
|
23
|
+
if (n==0) {
|
24
|
+
*(dtype*)p2 = buf[0];
|
25
|
+
}
|
26
|
+
else if (n%2==0) {
|
27
|
+
*(dtype*)p2 = (buf[n/2-1]+buf[n/2])/2;
|
28
|
+
}
|
29
|
+
else {
|
30
|
+
*(dtype*)p2 = buf[(n-1)/2];
|
31
|
+
}
|
32
|
+
}
|
33
|
+
<% end %>
|
34
|
+
|
35
|
+
/*
|
36
|
+
<%=name%> of self.
|
37
|
+
<% if is_float %>
|
38
|
+
@overload <%=name%>(axis:nil, keepdims:false, nan:false)
|
39
|
+
@param [TrueClass] nan (keyword) If true, propagete NaN. If false, ignore NaN.
|
40
|
+
<% else %>
|
41
|
+
@overload <%=name%>(axis:nil, keepdims:false)
|
42
|
+
<% end %>
|
43
|
+
@param [Numeric,Array,Range] axis (keyword) Affected dimensions.
|
44
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
45
|
+
@return [Cumo::<%=class_name%>] returns <%=name%> of self.
|
46
|
+
*/
|
47
|
+
|
48
|
+
static VALUE
|
49
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
50
|
+
{
|
51
|
+
VALUE v, reduce;
|
52
|
+
ndfunc_arg_in_t ain[2] = {{OVERWRITE,0},{sym_reduce,0}};
|
53
|
+
ndfunc_arg_out_t aout[1] = {{INT2FIX(0),0}};
|
54
|
+
ndfunc_t ndf = {0, NDF_HAS_LOOP|NDF_FLAT_REDUCE, 2,1, ain,aout};
|
55
|
+
|
56
|
+
self = na_copy(self); // as temporary buffer
|
57
|
+
<% if is_float %>
|
58
|
+
ndf.func = <%=c_iter%>_ignan;
|
59
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_prnan);
|
60
|
+
<% else %>
|
61
|
+
ndf.func = <%=c_iter%>;
|
62
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
63
|
+
<% end %>
|
64
|
+
v = na_ndloop(&ndf, 2, self, reduce);
|
65
|
+
return <%=type_name%>_extract(v);
|
66
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<% (is_float ? ["","_nan"] : [""]).each do |j| %>
|
2
|
+
static void
|
3
|
+
<%=c_iter%><%=j%>(na_loop_t *const lp)
|
4
|
+
{
|
5
|
+
size_t n;
|
6
|
+
char *p1;
|
7
|
+
ssize_t s1;
|
8
|
+
dtype xmin,xmax;
|
9
|
+
|
10
|
+
INIT_COUNTER(lp, n);
|
11
|
+
INIT_PTR(lp, 0, p1, s1);
|
12
|
+
|
13
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
14
|
+
f_<%=name%><%=j%>(n,p1,s1,&xmin,&xmax);
|
15
|
+
|
16
|
+
*(dtype*)(lp->args[1].ptr + lp->args[1].iter[0].pos) = xmin;
|
17
|
+
*(dtype*)(lp->args[2].ptr + lp->args[2].iter[0].pos) = xmax;
|
18
|
+
}
|
19
|
+
<% end %>
|
20
|
+
|
21
|
+
/*
|
22
|
+
<%=name%> of self.
|
23
|
+
<% if is_float %>
|
24
|
+
@overload <%=name%>(axis:nil, keepdims:false, nan:false)
|
25
|
+
@param [TrueClass] nan If true, apply NaN-aware algorithm (return NaN if exist).
|
26
|
+
<% else %>
|
27
|
+
@overload <%=name%>(axis:nil, keepdims:false)
|
28
|
+
<% end %>
|
29
|
+
@param [Numeric,Array,Range] axis (keyword) Affected dimensions.
|
30
|
+
@param [TrueClass] keepdims (keyword) If true, the reduced axes are left in the result array as dimensions with size one.
|
31
|
+
@return [Cumo::<%=class_name%>,Cumo::<%=class_name%>] min and max of self.
|
32
|
+
*/
|
33
|
+
static VALUE
|
34
|
+
<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
|
35
|
+
{
|
36
|
+
VALUE reduce;
|
37
|
+
ndfunc_arg_in_t ain[2] = {{cT,0},{sym_reduce,0}};
|
38
|
+
ndfunc_arg_out_t aout[2] = {{cT,0},{cT,0}};
|
39
|
+
ndfunc_t ndf = {<%=c_iter%>, STRIDE_LOOP_NIP|NDF_FLAT_REDUCE|NDF_EXTRACT, 2,2, ain,aout};
|
40
|
+
|
41
|
+
<% if is_float %>
|
42
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_nan);
|
43
|
+
<% else %>
|
44
|
+
reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
|
45
|
+
<% end %>
|
46
|
+
return na_ndloop(&ndf, 2, self, reduce);
|
47
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= method_code %>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
void <%="cumo_#{c_func(:nodef)}_kernel_launch"%>(dtype *ptr, dtype x);
|
2
|
+
|
3
|
+
static VALUE
|
4
|
+
<%=c_func(:nodef)%>(dtype x)
|
5
|
+
{
|
6
|
+
VALUE v;
|
7
|
+
dtype *ptr;
|
8
|
+
|
9
|
+
v = nary_new(cT, 0, NULL);
|
10
|
+
ptr = (dtype*)na_get_pointer_for_write(v);
|
11
|
+
<%="cumo_#{c_func(:nodef)}_kernel_launch"%>(ptr, x);
|
12
|
+
|
13
|
+
na_release_lock(v);
|
14
|
+
return v;
|
15
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
static void
|
2
|
+
<%=c_iter%>(na_loop_t *const lp)
|
3
|
+
{
|
4
|
+
size_t i;
|
5
|
+
dtype x, y, a;
|
6
|
+
|
7
|
+
SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
|
8
|
+
x = *(dtype*)(lp->args[0].ptr + lp->args[0].iter[0].pos);
|
9
|
+
i = lp->narg - 2;
|
10
|
+
y = *(dtype*)(lp->args[i].ptr + lp->args[i].iter[0].pos);
|
11
|
+
for (; --i;) {
|
12
|
+
y = m_mul(x,y);
|
13
|
+
a = *(dtype*)(lp->args[i].ptr + lp->args[i].iter[0].pos);
|
14
|
+
y = m_add(y,a);
|
15
|
+
}
|
16
|
+
i = lp->narg - 1;
|
17
|
+
*(dtype*)(lp->args[i].ptr + lp->args[i].iter[0].pos) = y;
|
18
|
+
}
|
19
|
+
|
20
|
+
/*
|
21
|
+
Polynomial.: a0 + a1*x + a2*x**2 + a3*x**3 + ... + an*x**n
|
22
|
+
@overload <%=name%> a0, a1, ...
|
23
|
+
@param [Cumo::NArray,Numeric] a0
|
24
|
+
@param [Cumo::NArray,Numeric] a1 , ...
|
25
|
+
@return [Cumo::<%=class_name%>]
|
26
|
+
*/
|
27
|
+
static VALUE
|
28
|
+
<%=c_func(-2)%>(VALUE self, VALUE args)
|
29
|
+
{
|
30
|
+
int argc, i;
|
31
|
+
VALUE *argv;
|
32
|
+
volatile VALUE v, a;
|
33
|
+
ndfunc_arg_out_t aout[1] = {{cT,0}};
|
34
|
+
ndfunc_t ndf = { <%=c_iter%>, NO_LOOP, 0, 1, 0, aout };
|
35
|
+
|
36
|
+
argc = RARRAY_LEN(args);
|
37
|
+
ndf.nin = argc+1;
|
38
|
+
ndf.ain = ALLOCA_N(ndfunc_arg_in_t,argc+1);
|
39
|
+
for (i=0; i<argc+1; i++) {
|
40
|
+
ndf.ain[i].type = cT;
|
41
|
+
}
|
42
|
+
argv = ALLOCA_N(VALUE,argc+1);
|
43
|
+
argv[0] = self;
|
44
|
+
for (i=0; i<argc; i++) {
|
45
|
+
argv[i+1] = RARRAY_PTR(args)[i];
|
46
|
+
}
|
47
|
+
a = rb_ary_new4(argc+1, argv);
|
48
|
+
v = na_ndloop2(&ndf, a);
|
49
|
+
return <%=type_name%>_extract(v);
|
50
|
+
}
|