cumo 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (266) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.travis.yml +5 -0
  4. data/3rd_party/mkmf-cu/.gitignore +36 -0
  5. data/3rd_party/mkmf-cu/Gemfile +3 -0
  6. data/3rd_party/mkmf-cu/LICENSE +21 -0
  7. data/3rd_party/mkmf-cu/README.md +36 -0
  8. data/3rd_party/mkmf-cu/Rakefile +11 -0
  9. data/3rd_party/mkmf-cu/bin/mkmf-cu-nvcc +4 -0
  10. data/3rd_party/mkmf-cu/lib/mkmf-cu.rb +32 -0
  11. data/3rd_party/mkmf-cu/lib/mkmf-cu/cli.rb +80 -0
  12. data/3rd_party/mkmf-cu/lib/mkmf-cu/nvcc.rb +157 -0
  13. data/3rd_party/mkmf-cu/mkmf-cu.gemspec +16 -0
  14. data/3rd_party/mkmf-cu/test/test_mkmf-cu.rb +67 -0
  15. data/CODE_OF_CONDUCT.md +46 -0
  16. data/Gemfile +8 -0
  17. data/LICENSE.txt +82 -0
  18. data/README.md +252 -0
  19. data/Rakefile +43 -0
  20. data/bench/broadcast_fp32.rb +138 -0
  21. data/bench/cumo_bench.rb +193 -0
  22. data/bench/numo_bench.rb +138 -0
  23. data/bench/reduction_fp32.rb +117 -0
  24. data/bin/console +14 -0
  25. data/bin/setup +8 -0
  26. data/cumo.gemspec +32 -0
  27. data/ext/cumo/cuda/cublas.c +278 -0
  28. data/ext/cumo/cuda/driver.c +421 -0
  29. data/ext/cumo/cuda/memory_pool.cpp +185 -0
  30. data/ext/cumo/cuda/memory_pool_impl.cpp +308 -0
  31. data/ext/cumo/cuda/memory_pool_impl.hpp +370 -0
  32. data/ext/cumo/cuda/memory_pool_impl_test.cpp +554 -0
  33. data/ext/cumo/cuda/nvrtc.c +207 -0
  34. data/ext/cumo/cuda/runtime.c +167 -0
  35. data/ext/cumo/cumo.c +148 -0
  36. data/ext/cumo/depend.erb +58 -0
  37. data/ext/cumo/extconf.rb +179 -0
  38. data/ext/cumo/include/cumo.h +25 -0
  39. data/ext/cumo/include/cumo/compat.h +23 -0
  40. data/ext/cumo/include/cumo/cuda/cublas.h +153 -0
  41. data/ext/cumo/include/cumo/cuda/cumo_thrust.hpp +187 -0
  42. data/ext/cumo/include/cumo/cuda/cumo_thrust_complex.hpp +79 -0
  43. data/ext/cumo/include/cumo/cuda/driver.h +22 -0
  44. data/ext/cumo/include/cumo/cuda/memory_pool.h +28 -0
  45. data/ext/cumo/include/cumo/cuda/nvrtc.h +22 -0
  46. data/ext/cumo/include/cumo/cuda/runtime.h +40 -0
  47. data/ext/cumo/include/cumo/indexer.h +238 -0
  48. data/ext/cumo/include/cumo/intern.h +142 -0
  49. data/ext/cumo/include/cumo/intern_fwd.h +38 -0
  50. data/ext/cumo/include/cumo/intern_kernel.h +6 -0
  51. data/ext/cumo/include/cumo/narray.h +429 -0
  52. data/ext/cumo/include/cumo/narray_kernel.h +149 -0
  53. data/ext/cumo/include/cumo/ndloop.h +95 -0
  54. data/ext/cumo/include/cumo/reduce_kernel.h +126 -0
  55. data/ext/cumo/include/cumo/template.h +158 -0
  56. data/ext/cumo/include/cumo/template_kernel.h +77 -0
  57. data/ext/cumo/include/cumo/types/bit.h +40 -0
  58. data/ext/cumo/include/cumo/types/bit_kernel.h +34 -0
  59. data/ext/cumo/include/cumo/types/complex.h +402 -0
  60. data/ext/cumo/include/cumo/types/complex_kernel.h +414 -0
  61. data/ext/cumo/include/cumo/types/complex_macro.h +382 -0
  62. data/ext/cumo/include/cumo/types/complex_macro_kernel.h +186 -0
  63. data/ext/cumo/include/cumo/types/dcomplex.h +46 -0
  64. data/ext/cumo/include/cumo/types/dcomplex_kernel.h +13 -0
  65. data/ext/cumo/include/cumo/types/dfloat.h +47 -0
  66. data/ext/cumo/include/cumo/types/dfloat_kernel.h +14 -0
  67. data/ext/cumo/include/cumo/types/float_def.h +34 -0
  68. data/ext/cumo/include/cumo/types/float_def_kernel.h +39 -0
  69. data/ext/cumo/include/cumo/types/float_macro.h +191 -0
  70. data/ext/cumo/include/cumo/types/float_macro_kernel.h +158 -0
  71. data/ext/cumo/include/cumo/types/int16.h +24 -0
  72. data/ext/cumo/include/cumo/types/int16_kernel.h +23 -0
  73. data/ext/cumo/include/cumo/types/int32.h +24 -0
  74. data/ext/cumo/include/cumo/types/int32_kernel.h +19 -0
  75. data/ext/cumo/include/cumo/types/int64.h +24 -0
  76. data/ext/cumo/include/cumo/types/int64_kernel.h +19 -0
  77. data/ext/cumo/include/cumo/types/int8.h +24 -0
  78. data/ext/cumo/include/cumo/types/int8_kernel.h +19 -0
  79. data/ext/cumo/include/cumo/types/int_macro.h +67 -0
  80. data/ext/cumo/include/cumo/types/int_macro_kernel.h +48 -0
  81. data/ext/cumo/include/cumo/types/real_accum.h +486 -0
  82. data/ext/cumo/include/cumo/types/real_accum_kernel.h +101 -0
  83. data/ext/cumo/include/cumo/types/robj_macro.h +80 -0
  84. data/ext/cumo/include/cumo/types/robj_macro_kernel.h +0 -0
  85. data/ext/cumo/include/cumo/types/robject.h +27 -0
  86. data/ext/cumo/include/cumo/types/robject_kernel.h +7 -0
  87. data/ext/cumo/include/cumo/types/scomplex.h +46 -0
  88. data/ext/cumo/include/cumo/types/scomplex_kernel.h +13 -0
  89. data/ext/cumo/include/cumo/types/sfloat.h +48 -0
  90. data/ext/cumo/include/cumo/types/sfloat_kernel.h +14 -0
  91. data/ext/cumo/include/cumo/types/uint16.h +25 -0
  92. data/ext/cumo/include/cumo/types/uint16_kernel.h +20 -0
  93. data/ext/cumo/include/cumo/types/uint32.h +25 -0
  94. data/ext/cumo/include/cumo/types/uint32_kernel.h +20 -0
  95. data/ext/cumo/include/cumo/types/uint64.h +25 -0
  96. data/ext/cumo/include/cumo/types/uint64_kernel.h +20 -0
  97. data/ext/cumo/include/cumo/types/uint8.h +25 -0
  98. data/ext/cumo/include/cumo/types/uint8_kernel.h +20 -0
  99. data/ext/cumo/include/cumo/types/uint_macro.h +58 -0
  100. data/ext/cumo/include/cumo/types/uint_macro_kernel.h +38 -0
  101. data/ext/cumo/include/cumo/types/xint_macro.h +169 -0
  102. data/ext/cumo/include/cumo/types/xint_macro_kernel.h +88 -0
  103. data/ext/cumo/narray/SFMT-params.h +97 -0
  104. data/ext/cumo/narray/SFMT-params19937.h +46 -0
  105. data/ext/cumo/narray/SFMT.c +620 -0
  106. data/ext/cumo/narray/SFMT.h +167 -0
  107. data/ext/cumo/narray/array.c +638 -0
  108. data/ext/cumo/narray/data.c +961 -0
  109. data/ext/cumo/narray/gen/cogen.rb +56 -0
  110. data/ext/cumo/narray/gen/cogen_kernel.rb +58 -0
  111. data/ext/cumo/narray/gen/def/bit.rb +37 -0
  112. data/ext/cumo/narray/gen/def/dcomplex.rb +39 -0
  113. data/ext/cumo/narray/gen/def/dfloat.rb +37 -0
  114. data/ext/cumo/narray/gen/def/int16.rb +36 -0
  115. data/ext/cumo/narray/gen/def/int32.rb +36 -0
  116. data/ext/cumo/narray/gen/def/int64.rb +36 -0
  117. data/ext/cumo/narray/gen/def/int8.rb +36 -0
  118. data/ext/cumo/narray/gen/def/robject.rb +37 -0
  119. data/ext/cumo/narray/gen/def/scomplex.rb +39 -0
  120. data/ext/cumo/narray/gen/def/sfloat.rb +37 -0
  121. data/ext/cumo/narray/gen/def/uint16.rb +36 -0
  122. data/ext/cumo/narray/gen/def/uint32.rb +36 -0
  123. data/ext/cumo/narray/gen/def/uint64.rb +36 -0
  124. data/ext/cumo/narray/gen/def/uint8.rb +36 -0
  125. data/ext/cumo/narray/gen/erbpp2.rb +346 -0
  126. data/ext/cumo/narray/gen/narray_def.rb +268 -0
  127. data/ext/cumo/narray/gen/spec.rb +425 -0
  128. data/ext/cumo/narray/gen/tmpl/accum.c +86 -0
  129. data/ext/cumo/narray/gen/tmpl/accum_binary.c +121 -0
  130. data/ext/cumo/narray/gen/tmpl/accum_binary_kernel.cu +61 -0
  131. data/ext/cumo/narray/gen/tmpl/accum_index.c +119 -0
  132. data/ext/cumo/narray/gen/tmpl/accum_index_kernel.cu +66 -0
  133. data/ext/cumo/narray/gen/tmpl/accum_kernel.cu +12 -0
  134. data/ext/cumo/narray/gen/tmpl/alloc_func.c +107 -0
  135. data/ext/cumo/narray/gen/tmpl/allocate.c +37 -0
  136. data/ext/cumo/narray/gen/tmpl/aref.c +66 -0
  137. data/ext/cumo/narray/gen/tmpl/aref_cpu.c +50 -0
  138. data/ext/cumo/narray/gen/tmpl/aset.c +56 -0
  139. data/ext/cumo/narray/gen/tmpl/binary.c +162 -0
  140. data/ext/cumo/narray/gen/tmpl/binary2.c +70 -0
  141. data/ext/cumo/narray/gen/tmpl/binary2_kernel.cu +15 -0
  142. data/ext/cumo/narray/gen/tmpl/binary_kernel.cu +31 -0
  143. data/ext/cumo/narray/gen/tmpl/binary_s.c +45 -0
  144. data/ext/cumo/narray/gen/tmpl/binary_s_kernel.cu +15 -0
  145. data/ext/cumo/narray/gen/tmpl/bincount.c +181 -0
  146. data/ext/cumo/narray/gen/tmpl/cast.c +44 -0
  147. data/ext/cumo/narray/gen/tmpl/cast_array.c +13 -0
  148. data/ext/cumo/narray/gen/tmpl/class.c +9 -0
  149. data/ext/cumo/narray/gen/tmpl/class_kernel.cu +6 -0
  150. data/ext/cumo/narray/gen/tmpl/clip.c +121 -0
  151. data/ext/cumo/narray/gen/tmpl/coerce_cast.c +10 -0
  152. data/ext/cumo/narray/gen/tmpl/complex_accum_kernel.cu +129 -0
  153. data/ext/cumo/narray/gen/tmpl/cond_binary.c +68 -0
  154. data/ext/cumo/narray/gen/tmpl/cond_binary_kernel.cu +18 -0
  155. data/ext/cumo/narray/gen/tmpl/cond_unary.c +46 -0
  156. data/ext/cumo/narray/gen/tmpl/cum.c +50 -0
  157. data/ext/cumo/narray/gen/tmpl/each.c +47 -0
  158. data/ext/cumo/narray/gen/tmpl/each_with_index.c +70 -0
  159. data/ext/cumo/narray/gen/tmpl/ewcomp.c +79 -0
  160. data/ext/cumo/narray/gen/tmpl/ewcomp_kernel.cu +19 -0
  161. data/ext/cumo/narray/gen/tmpl/extract.c +22 -0
  162. data/ext/cumo/narray/gen/tmpl/extract_cpu.c +26 -0
  163. data/ext/cumo/narray/gen/tmpl/extract_data.c +53 -0
  164. data/ext/cumo/narray/gen/tmpl/eye.c +105 -0
  165. data/ext/cumo/narray/gen/tmpl/eye_kernel.cu +19 -0
  166. data/ext/cumo/narray/gen/tmpl/fill.c +52 -0
  167. data/ext/cumo/narray/gen/tmpl/fill_kernel.cu +29 -0
  168. data/ext/cumo/narray/gen/tmpl/float_accum_kernel.cu +106 -0
  169. data/ext/cumo/narray/gen/tmpl/format.c +62 -0
  170. data/ext/cumo/narray/gen/tmpl/format_to_a.c +49 -0
  171. data/ext/cumo/narray/gen/tmpl/frexp.c +38 -0
  172. data/ext/cumo/narray/gen/tmpl/gemm.c +203 -0
  173. data/ext/cumo/narray/gen/tmpl/init_class.c +20 -0
  174. data/ext/cumo/narray/gen/tmpl/init_module.c +12 -0
  175. data/ext/cumo/narray/gen/tmpl/inspect.c +21 -0
  176. data/ext/cumo/narray/gen/tmpl/lib.c +50 -0
  177. data/ext/cumo/narray/gen/tmpl/lib_kernel.cu +24 -0
  178. data/ext/cumo/narray/gen/tmpl/logseq.c +102 -0
  179. data/ext/cumo/narray/gen/tmpl/logseq_kernel.cu +31 -0
  180. data/ext/cumo/narray/gen/tmpl/map_with_index.c +98 -0
  181. data/ext/cumo/narray/gen/tmpl/median.c +66 -0
  182. data/ext/cumo/narray/gen/tmpl/minmax.c +47 -0
  183. data/ext/cumo/narray/gen/tmpl/module.c +9 -0
  184. data/ext/cumo/narray/gen/tmpl/module_kernel.cu +1 -0
  185. data/ext/cumo/narray/gen/tmpl/new_dim0.c +15 -0
  186. data/ext/cumo/narray/gen/tmpl/new_dim0_kernel.cu +8 -0
  187. data/ext/cumo/narray/gen/tmpl/poly.c +50 -0
  188. data/ext/cumo/narray/gen/tmpl/pow.c +97 -0
  189. data/ext/cumo/narray/gen/tmpl/pow_kernel.cu +29 -0
  190. data/ext/cumo/narray/gen/tmpl/powint.c +17 -0
  191. data/ext/cumo/narray/gen/tmpl/qsort.c +212 -0
  192. data/ext/cumo/narray/gen/tmpl/rand.c +168 -0
  193. data/ext/cumo/narray/gen/tmpl/rand_norm.c +121 -0
  194. data/ext/cumo/narray/gen/tmpl/real_accum_kernel.cu +75 -0
  195. data/ext/cumo/narray/gen/tmpl/seq.c +112 -0
  196. data/ext/cumo/narray/gen/tmpl/seq_kernel.cu +43 -0
  197. data/ext/cumo/narray/gen/tmpl/set2.c +57 -0
  198. data/ext/cumo/narray/gen/tmpl/sort.c +48 -0
  199. data/ext/cumo/narray/gen/tmpl/sort_index.c +111 -0
  200. data/ext/cumo/narray/gen/tmpl/store.c +41 -0
  201. data/ext/cumo/narray/gen/tmpl/store_array.c +187 -0
  202. data/ext/cumo/narray/gen/tmpl/store_array_kernel.cu +58 -0
  203. data/ext/cumo/narray/gen/tmpl/store_bit.c +86 -0
  204. data/ext/cumo/narray/gen/tmpl/store_bit_kernel.cu +66 -0
  205. data/ext/cumo/narray/gen/tmpl/store_from.c +81 -0
  206. data/ext/cumo/narray/gen/tmpl/store_from_kernel.cu +58 -0
  207. data/ext/cumo/narray/gen/tmpl/store_kernel.cu +3 -0
  208. data/ext/cumo/narray/gen/tmpl/store_numeric.c +9 -0
  209. data/ext/cumo/narray/gen/tmpl/to_a.c +43 -0
  210. data/ext/cumo/narray/gen/tmpl/unary.c +132 -0
  211. data/ext/cumo/narray/gen/tmpl/unary2.c +60 -0
  212. data/ext/cumo/narray/gen/tmpl/unary_kernel.cu +72 -0
  213. data/ext/cumo/narray/gen/tmpl/unary_ret2.c +34 -0
  214. data/ext/cumo/narray/gen/tmpl/unary_s.c +86 -0
  215. data/ext/cumo/narray/gen/tmpl/unary_s_kernel.cu +58 -0
  216. data/ext/cumo/narray/gen/tmpl_bit/allocate.c +24 -0
  217. data/ext/cumo/narray/gen/tmpl_bit/aref.c +54 -0
  218. data/ext/cumo/narray/gen/tmpl_bit/aref_cpu.c +57 -0
  219. data/ext/cumo/narray/gen/tmpl_bit/aset.c +56 -0
  220. data/ext/cumo/narray/gen/tmpl_bit/binary.c +98 -0
  221. data/ext/cumo/narray/gen/tmpl_bit/bit_count.c +64 -0
  222. data/ext/cumo/narray/gen/tmpl_bit/bit_count_cpu.c +88 -0
  223. data/ext/cumo/narray/gen/tmpl_bit/bit_count_kernel.cu +76 -0
  224. data/ext/cumo/narray/gen/tmpl_bit/bit_reduce.c +133 -0
  225. data/ext/cumo/narray/gen/tmpl_bit/each.c +48 -0
  226. data/ext/cumo/narray/gen/tmpl_bit/each_with_index.c +70 -0
  227. data/ext/cumo/narray/gen/tmpl_bit/extract.c +30 -0
  228. data/ext/cumo/narray/gen/tmpl_bit/extract_cpu.c +29 -0
  229. data/ext/cumo/narray/gen/tmpl_bit/fill.c +69 -0
  230. data/ext/cumo/narray/gen/tmpl_bit/format.c +64 -0
  231. data/ext/cumo/narray/gen/tmpl_bit/format_to_a.c +51 -0
  232. data/ext/cumo/narray/gen/tmpl_bit/inspect.c +21 -0
  233. data/ext/cumo/narray/gen/tmpl_bit/mask.c +136 -0
  234. data/ext/cumo/narray/gen/tmpl_bit/none_p.c +14 -0
  235. data/ext/cumo/narray/gen/tmpl_bit/store_array.c +108 -0
  236. data/ext/cumo/narray/gen/tmpl_bit/store_bit.c +70 -0
  237. data/ext/cumo/narray/gen/tmpl_bit/store_from.c +60 -0
  238. data/ext/cumo/narray/gen/tmpl_bit/to_a.c +47 -0
  239. data/ext/cumo/narray/gen/tmpl_bit/unary.c +81 -0
  240. data/ext/cumo/narray/gen/tmpl_bit/where.c +90 -0
  241. data/ext/cumo/narray/gen/tmpl_bit/where2.c +95 -0
  242. data/ext/cumo/narray/index.c +880 -0
  243. data/ext/cumo/narray/kwargs.c +153 -0
  244. data/ext/cumo/narray/math.c +142 -0
  245. data/ext/cumo/narray/narray.c +1948 -0
  246. data/ext/cumo/narray/ndloop.c +2105 -0
  247. data/ext/cumo/narray/rand.c +45 -0
  248. data/ext/cumo/narray/step.c +474 -0
  249. data/ext/cumo/narray/struct.c +886 -0
  250. data/lib/cumo.rb +3 -0
  251. data/lib/cumo/cuda.rb +11 -0
  252. data/lib/cumo/cuda/compile_error.rb +36 -0
  253. data/lib/cumo/cuda/compiler.rb +161 -0
  254. data/lib/cumo/cuda/device.rb +47 -0
  255. data/lib/cumo/cuda/link_state.rb +31 -0
  256. data/lib/cumo/cuda/module.rb +40 -0
  257. data/lib/cumo/cuda/nvrtc_program.rb +27 -0
  258. data/lib/cumo/linalg.rb +12 -0
  259. data/lib/cumo/narray.rb +2 -0
  260. data/lib/cumo/narray/extra.rb +1278 -0
  261. data/lib/erbpp.rb +294 -0
  262. data/lib/erbpp/line_number.rb +137 -0
  263. data/lib/erbpp/narray_def.rb +381 -0
  264. data/numo-narray-version +1 -0
  265. data/run.gdb +7 -0
  266. metadata +353 -0
@@ -0,0 +1,10 @@
1
+ /*
2
+ return NArray with cast to the type of self.
3
+ @overload coerce_cast(type)
4
+ @return [nil]
5
+ */
6
+ static VALUE
7
+ <%=c_func(1)%>(VALUE self, VALUE type)
8
+ {
9
+ return Qnil;
10
+ }
@@ -0,0 +1,129 @@
1
+ #if defined(__cplusplus)
2
+ #if 0
3
+ { /* satisfy cc-mode */
4
+ #endif
5
+ } /* extern "C" { */
6
+ #endif
7
+
8
+ struct cumo_<%=type_name%>_sum_impl {
9
+ __device__ <%=dtype%> Identity() { return m_zero; }
10
+ __device__ dtype MapIn(dtype in, int64_t /*index*/) { return in; }
11
+ __device__ void Reduce(dtype next, <%=dtype%>& accum) { accum = m_add(next, accum); }
12
+ __device__ <%=dtype%> MapOut(<%=dtype%> accum) { return accum; }
13
+ };
14
+
15
+ struct cumo_<%=type_name%>_prod_impl {
16
+ __device__ <%=dtype%> Identity() { return m_one; }
17
+ __device__ dtype MapIn(dtype in, int64_t /*index*/) { return in; }
18
+ __device__ void Reduce(dtype next, <%=dtype%>& accum) { accum = m_mul(next, accum); }
19
+ __device__ <%=dtype%> MapOut(<%=dtype%> accum) { return accum; }
20
+ };
21
+
22
+ template<typename Iterator1>
23
+ __global__ void cumo_<%=type_name%>_mean_kernel(Iterator1 p1_begin, Iterator1 p1_end, <%=dtype%>* p2, uint64_t n)
24
+ {
25
+ dtype init = m_zero;
26
+ dtype sum = thrust::reduce(thrust::cuda::par, p1_begin, p1_end, init, cumo_thrust_plus());
27
+ *p2 = c_div_r(sum, n);
28
+ }
29
+
30
+ template<typename Iterator1>
31
+ __global__ void cumo_<%=type_name%>_var_kernel(Iterator1 p1_begin, Iterator1 p1_end, rtype* p2)
32
+ {
33
+ cumo_thrust_complex_variance_unary_op<dtype, rtype> unary_op;
34
+ cumo_thrust_complex_variance_binary_op<dtype, rtype> binary_op;
35
+ cumo_thrust_complex_variance_data<dtype, rtype> init = {};
36
+ cumo_thrust_complex_variance_data<dtype, rtype> result;
37
+ result = thrust::transform_reduce(thrust::cuda::par, p1_begin, p1_end, unary_op, init, binary_op);
38
+ *p2 = result.variance();
39
+ }
40
+
41
+ template<typename Iterator1>
42
+ __global__ void cumo_<%=type_name%>_stddev_kernel(Iterator1 p1_begin, Iterator1 p1_end, rtype* p2)
43
+ {
44
+ cumo_thrust_complex_variance_unary_op<dtype, rtype> unary_op;
45
+ cumo_thrust_complex_variance_binary_op<dtype, rtype> binary_op;
46
+ cumo_thrust_complex_variance_data<dtype, rtype> init = {};
47
+ cumo_thrust_complex_variance_data<dtype, rtype> result;
48
+ result = thrust::transform_reduce(thrust::cuda::par, p1_begin, p1_end, unary_op, init, binary_op);
49
+ *p2 = r_sqrt(result.variance());
50
+ }
51
+
52
+ template<typename Iterator1>
53
+ __global__ void cumo_<%=type_name%>_rms_kernel(Iterator1 p1_begin, Iterator1 p1_end, rtype* p2, uint64_t n)
54
+ {
55
+ rtype init = 0;
56
+ rtype result;
57
+ result = thrust::transform_reduce(thrust::cuda::par, p1_begin, p1_end, cumo_thrust_square(), init, thrust::plus<rtype>());
58
+ *p2 = r_sqrt(result/n);
59
+ }
60
+
61
+ #if defined(__cplusplus)
62
+ extern "C" {
63
+ #if 0
64
+ } /* satisfy cc-mode */
65
+ #endif
66
+ #endif
67
+
68
+ void cumo_<%=type_name%>_sum_kernel_launch(na_reduction_arg_t* arg)
69
+ {
70
+ cumo_reduce<dtype, <%=dtype%>, cumo_<%=type_name%>_sum_impl>(*arg, cumo_<%=type_name%>_sum_impl{});
71
+ }
72
+
73
+ void cumo_<%=type_name%>_prod_kernel_launch(na_reduction_arg_t* arg)
74
+ {
75
+ cumo_reduce<dtype, <%=dtype%>, cumo_<%=type_name%>_prod_impl>(*arg, cumo_<%=type_name%>_prod_impl{});
76
+ }
77
+
78
+ void cumo_<%=type_name%>_mean_kernel_launch(uint64_t n, char *p1, ssize_t s1, char *p2)
79
+ {
80
+ ssize_t s1_idx = s1 / sizeof(dtype);
81
+ thrust::device_ptr<dtype> data_begin = thrust::device_pointer_cast((dtype*)p1);
82
+ thrust::device_ptr<dtype> data_end = thrust::device_pointer_cast(((dtype*)p1) + n * s1_idx);
83
+ if (s1_idx == 1) {
84
+ cumo_<%=type_name%>_mean_kernel<<<1,1>>>(data_begin, data_end, (dtype*)p2, n);
85
+ } else {
86
+ cumo_thrust_strided_range<thrust::device_vector<dtype>::iterator> range(data_begin, data_end, s1_idx);
87
+ cumo_<%=type_name%>_mean_kernel<<<1,1>>>(range.begin(), range.end(), (dtype*)p2, n);
88
+ }
89
+ }
90
+
91
+ void cumo_<%=type_name%>_var_kernel_launch(uint64_t n, char *p1, ssize_t s1, char *p2)
92
+ {
93
+ ssize_t s1_idx = s1 / sizeof(dtype);
94
+ thrust::device_ptr<dtype> data_begin = thrust::device_pointer_cast((dtype*)p1);
95
+ thrust::device_ptr<dtype> data_end = thrust::device_pointer_cast(((dtype*)p1) + n * s1_idx);
96
+ if (s1_idx == 1) {
97
+ cumo_<%=type_name%>_var_kernel<<<1,1>>>(data_begin, data_end, (rtype*)p2);
98
+ } else {
99
+ cumo_thrust_strided_range<thrust::device_vector<dtype>::iterator> range(data_begin, data_end, s1_idx);
100
+ cumo_<%=type_name%>_var_kernel<<<1,1>>>(range.begin(), range.end(), (rtype*)p2);
101
+ }
102
+ }
103
+
104
+ void cumo_<%=type_name%>_stddev_kernel_launch(uint64_t n, char *p1, ssize_t s1, char *p2)
105
+ {
106
+ ssize_t s1_idx = s1 / sizeof(dtype);
107
+ thrust::device_ptr<dtype> data_begin = thrust::device_pointer_cast((dtype*)p1);
108
+ thrust::device_ptr<dtype> data_end = thrust::device_pointer_cast(((dtype*)p1) + n * s1_idx);
109
+ if (s1_idx == 1) {
110
+ cumo_<%=type_name%>_stddev_kernel<<<1,1>>>(data_begin, data_end, (rtype*)p2);
111
+ } else {
112
+ cumo_thrust_strided_range<thrust::device_vector<dtype>::iterator> range(data_begin, data_end, s1_idx);
113
+ cumo_<%=type_name%>_stddev_kernel<<<1,1>>>(range.begin(), range.end(), (rtype*)p2);
114
+ }
115
+ }
116
+
117
+ void cumo_<%=type_name%>_rms_kernel_launch(uint64_t n, char *p1, ssize_t s1, char *p2)
118
+ {
119
+ ssize_t s1_idx = s1 / sizeof(dtype);
120
+ thrust::device_ptr<dtype> data_begin = thrust::device_pointer_cast((dtype*)p1);
121
+ thrust::device_ptr<dtype> data_end = thrust::device_pointer_cast(((dtype*)p1) + n * s1_idx);
122
+ if (s1_idx == 1) {
123
+ cumo_<%=type_name%>_rms_kernel<<<1,1>>>(data_begin, data_end, (rtype*)p2, n);
124
+ } else {
125
+ cumo_thrust_strided_range<thrust::device_vector<dtype>::iterator> range(data_begin, data_end, s1_idx);
126
+ cumo_<%=type_name%>_rms_kernel<<<1,1>>>(range.begin(), range.end(), (rtype*)p2, n);
127
+ }
128
+ }
129
+
@@ -0,0 +1,68 @@
1
+ <% unless type_name == 'robject' %>
2
+ void <%="cumo_#{c_iter}_stride_kernel_launch"%>(char *p1, char *p2, BIT_DIGIT *a3, size_t p3, ssize_t s1, ssize_t s2, ssize_t s3, uint64_t n);
3
+ <% end %>
4
+
5
+ static void
6
+ <%=c_iter%>(na_loop_t *const lp)
7
+ {
8
+ size_t i;
9
+ char *p1, *p2;
10
+ BIT_DIGIT *a3;
11
+ size_t p3;
12
+ ssize_t s1, s2, s3;
13
+ INIT_COUNTER(lp, i);
14
+ INIT_PTR(lp, 0, p1, s1);
15
+ INIT_PTR(lp, 1, p2, s2);
16
+ INIT_PTR_BIT(lp, 2, a3, p3, s3);
17
+ <% if type_name == 'robject' %>
18
+ {
19
+ dtype x, y;
20
+ BIT_DIGIT b;
21
+ SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
22
+ for (; i--;) {
23
+ GET_DATA_STRIDE(p1,s1,dtype,x);
24
+ GET_DATA_STRIDE(p2,s2,dtype,y);
25
+ b = (m_<%=name%>(x,y)) ? 1:0;
26
+ STORE_BIT(a3,p3,b);
27
+ p3+=s3;
28
+ }
29
+ }
30
+ <% else %>
31
+ {
32
+ <%="cumo_#{c_iter}_stride_kernel_launch"%>(p1,p2,a3,p3,s1,s2,s3,i);
33
+ }
34
+ <% end %>
35
+ }
36
+
37
+ static VALUE
38
+ <%=c_func%>_self(VALUE self, VALUE other)
39
+ {
40
+ ndfunc_arg_in_t ain[2] = {{cT,0},{cT,0}};
41
+ ndfunc_arg_out_t aout[1] = {{cumo_cBit,0}};
42
+ ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP, 2, 1, ain, aout };
43
+
44
+ return na_ndloop(&ndf, 2, self, other);
45
+ }
46
+
47
+ /*
48
+ Comparison <%=name%> other.
49
+ @overload <%=op_map%> other
50
+ @param [Cumo::NArray,Numeric] other
51
+ @return [Cumo::Bit] result of self <%=name%> other.
52
+ */
53
+ static VALUE
54
+ <%=c_func(1)%>(VALUE self, VALUE other)
55
+ {
56
+ <% if is_object %>
57
+ return <%=c_func%>_self(self, other);
58
+ <% else %>
59
+ VALUE klass, v;
60
+ klass = na_upcast(CLASS_OF(self),CLASS_OF(other));
61
+ if (klass==cT) {
62
+ return <%=c_func%>_self(self, other);
63
+ } else {
64
+ v = rb_funcall(klass, id_cast, 1, self);
65
+ return rb_funcall(v, <%=id_op%>, 1, other);
66
+ }
67
+ <% end %>
68
+ }
@@ -0,0 +1,18 @@
1
+ <% unless type_name == 'robject' %>
2
+ __global__ void <%="cumo_#{c_iter}_stride_kernel"%>(char *p1, char *p2, BIT_DIGIT *a3, size_t p3, ssize_t s1, ssize_t s2, ssize_t s3, 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 = *(dtype*)(p1+(i*s1));
6
+ dtype y = *(dtype*)(p2+(i*s2));
7
+ BIT_DIGIT b = (m_<%=name%>(x,y)) ? 1:0;
8
+ STORE_BIT(a3,p3+(i*s3),b);
9
+ }
10
+ }
11
+
12
+ void <%="cumo_#{c_iter}_stride_kernel_launch"%>(char *p1, char *p2, BIT_DIGIT *a3, size_t p3, ssize_t s1, ssize_t s2, ssize_t s3, uint64_t n)
13
+ {
14
+ size_t gridDim = get_gridDim(n);
15
+ size_t blockDim = get_blockDim(n);
16
+ <%="cumo_#{c_iter}_stride_kernel"%><<<gridDim, blockDim>>>(p1,p2,a3,p3,s1,s2,s3,n);
17
+ }
18
+ <% end %>
@@ -0,0 +1,46 @@
1
+ static void
2
+ <%=c_iter%>(na_loop_t *const lp)
3
+ {
4
+ size_t i;
5
+ char *p1;
6
+ BIT_DIGIT *a2;
7
+ size_t p2;
8
+ ssize_t s1, s2;
9
+ size_t *idx1;
10
+ dtype x;
11
+ BIT_DIGIT b;
12
+ INIT_COUNTER(lp, i);
13
+ INIT_PTR_IDX(lp, 0, p1, s1, idx1);
14
+ INIT_PTR_BIT(lp, 1, a2, p2, s2);
15
+ SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%>", "<%=type_name%>");
16
+ if (idx1) {
17
+ for (; i--;) {
18
+ GET_DATA_INDEX(p1,idx1,dtype,x);
19
+ b = (m_<%=name%>(x)) ? 1:0;
20
+ STORE_BIT(a2,p2,b);
21
+ p2+=s2;
22
+ }
23
+ } else {
24
+ for (; i--;) {
25
+ GET_DATA_STRIDE(p1,s1,dtype,x);
26
+ b = (m_<%=name%>(x)) ? 1:0;
27
+ STORE_BIT(a2,p2,b);
28
+ p2+=s2;
29
+ }
30
+ }
31
+ }
32
+
33
+ /*
34
+ Condition of <%=name%>.
35
+ @overload <%=name%>
36
+ @return [Cumo::Bit] Condition of <%=name%>.
37
+ */
38
+ static VALUE
39
+ <%=c_func(0)%>(VALUE self)
40
+ {
41
+ ndfunc_arg_in_t ain[1] = {{cT,0}};
42
+ ndfunc_arg_out_t aout[1] = {{cumo_cBit,0}};
43
+ ndfunc_t ndf = { <%=c_iter%>, FULL_LOOP, 1, 1, ain, aout };
44
+
45
+ return na_ndloop(&ndf, 1, self);
46
+ }
@@ -0,0 +1,50 @@
1
+ <% (is_float ? ["","_nan"] : [""]).each do |j| %>
2
+ static void
3
+ <%=c_iter%><%=j%>(na_loop_t *const lp)
4
+ {
5
+ size_t i;
6
+ char *p1, *p2;
7
+ ssize_t s1, s2;
8
+ dtype x, y;
9
+
10
+ INIT_COUNTER(lp, i);
11
+ INIT_PTR(lp, 0, p1, s1);
12
+ INIT_PTR(lp, 1, p2, s2);
13
+ //printf("i=%lu p1=%lx s1=%lu p2=%lx s2=%lu\n",i,(size_t)p1,s1,(size_t)p2,s2);
14
+
15
+ GET_DATA_STRIDE(p1,s1,dtype,x);
16
+ SET_DATA_STRIDE(p2,s2,dtype,x);
17
+ //printf("i=%lu x=%f\n",i,x);
18
+ SHOW_SYNCHRONIZE_FIXME_WARNING_ONCE("<%=name%><%=j%>", "<%=type_name%>");
19
+ for (i--; i--;) {
20
+ GET_DATA_STRIDE(p1,s1,dtype,y);
21
+ m_<%=name%><%=j%>(x,y);
22
+ SET_DATA_STRIDE(p2,s2,dtype,x);
23
+ //printf("i=%lu x=%f\n",i,x);
24
+ }
25
+ }
26
+ <% end %>
27
+
28
+ /*
29
+ <%=name%> of self.
30
+ @overload <%=name%>(axis:nil, nan:false)
31
+ @param [Numeric,Array,Range] axis Affected dimensions.
32
+ @param [TrueClass] nan If true, apply NaN-aware algorithm (avoid NaN if exists).
33
+ @return [Cumo::<%=class_name%>] <%=name%> of self.
34
+ */
35
+ static VALUE
36
+ <%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
37
+ {
38
+ VALUE reduce;
39
+ ndfunc_arg_in_t ain[2] = {{cT,0},{sym_reduce,0}};
40
+ ndfunc_arg_out_t aout[1] = {{cT,0}};
41
+ ndfunc_t ndf = { <%=c_iter%>, STRIDE_LOOP|NDF_FLAT_REDUCE|NDF_CUM,
42
+ 2, 1, ain, aout };
43
+
44
+ <% if is_float %>
45
+ reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, <%=c_iter%>_nan);
46
+ <% else %>
47
+ reduce = na_reduce_dimension(argc, argv, 1, &self, &ndf, 0);
48
+ <% end %>
49
+ return na_ndloop(&ndf, 2, self, reduce);
50
+ }
@@ -0,0 +1,47 @@
1
+ static void
2
+ <%=c_iter%>(na_loop_t *const lp)
3
+ {
4
+ size_t i, s1;
5
+ char *p1;
6
+ size_t *idx1;
7
+ dtype x;
8
+ VALUE y;
9
+
10
+ INIT_COUNTER(lp, i);
11
+ INIT_PTR_IDX(lp, 0, p1, s1, idx1);
12
+
13
+ SHOW_SYNCHRONIZE_WARNING_ONCE("<%=name%>", "<%=type_name%>");
14
+ cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
15
+
16
+ if (idx1) {
17
+ for (; i--;) {
18
+ GET_DATA_INDEX(p1,idx1,dtype,x);
19
+ y = m_data_to_num(x);
20
+ rb_yield(y);
21
+ }
22
+ } else {
23
+ for (; i--;) {
24
+ GET_DATA_STRIDE(p1,s1,dtype,x);
25
+ y = m_data_to_num(x);
26
+ rb_yield(y);
27
+ }
28
+ }
29
+ }
30
+
31
+ /*
32
+ Calls the given block once for each element in self,
33
+ passing that element as a parameter.
34
+ @overload <%=name%>
35
+ @return [Cumo::NArray] self
36
+ For a block {|x| ... }
37
+ @yield [x] x is element of NArray.
38
+ */
39
+ static VALUE
40
+ <%=c_func(0)%>(VALUE self)
41
+ {
42
+ ndfunc_arg_in_t ain[1] = {{Qnil,0}};
43
+ ndfunc_t ndf = {<%=c_iter%>, FULL_LOOP_NIP, 1,0, ain,0};
44
+
45
+ na_ndloop(&ndf, 1, self);
46
+ return self;
47
+ }
@@ -0,0 +1,70 @@
1
+ static inline void
2
+ yield_each_with_index(dtype x, size_t *c, VALUE *a, int nd, int md)
3
+ {
4
+ int j;
5
+
6
+ a[0] = m_data_to_num(x);
7
+ for (j=0; j<=nd; j++) {
8
+ a[j+1] = SIZET2NUM(c[j]);
9
+ }
10
+ rb_yield(rb_ary_new4(md,a));
11
+ }
12
+
13
+
14
+ static void
15
+ <%=c_iter%>(na_loop_t *const lp)
16
+ {
17
+ size_t i, s1;
18
+ char *p1;
19
+ size_t *idx1;
20
+ dtype x;
21
+ VALUE *a;
22
+ size_t *c;
23
+ int nd, md;
24
+
25
+ c = (size_t*)(lp->opt_ptr);
26
+ nd = lp->ndim;
27
+ if (nd > 0) {nd--;}
28
+ md = nd + 2;
29
+ a = ALLOCA_N(VALUE,md);
30
+
31
+ INIT_COUNTER(lp, i);
32
+ INIT_PTR_IDX(lp, 0, p1, s1, idx1);
33
+ c[nd] = 0;
34
+
35
+ SHOW_SYNCHRONIZE_WARNING_ONCE("<%=name%>", "<%=type_name%>");
36
+ cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
37
+
38
+ if (idx1) {
39
+ for (; i--;) {
40
+ GET_DATA_INDEX(p1,idx1,dtype,x);
41
+ yield_each_with_index(x,c,a,nd,md);
42
+ c[nd]++;
43
+ }
44
+ } else {
45
+ for (; i--;) {
46
+ cumo_cuda_runtime_check_status(cudaDeviceSynchronize());
47
+ GET_DATA_STRIDE(p1,s1,dtype,x);
48
+ yield_each_with_index(x,c,a,nd,md);
49
+ c[nd]++;
50
+ }
51
+ }
52
+ }
53
+
54
+ /*
55
+ Invokes the given block once for each element of self,
56
+ passing that element and indices along each axis as parameters.
57
+ @overload <%=name%>
58
+ @return [Cumo::NArray] self
59
+ For a block {|x,i,j,...| ... }
60
+ @yield [x,i,j,...] x is an element, i,j,... are multidimensional indices.
61
+ */
62
+ static VALUE
63
+ <%=c_func(0)%>(VALUE self)
64
+ {
65
+ ndfunc_arg_in_t ain[1] = {{Qnil,0}};
66
+ ndfunc_t ndf = {<%=c_iter%>, FULL_LOOP_NIP, 1,0, ain,0};
67
+
68
+ na_ndloop_with_index(&ndf, 1, self);
69
+ return self;
70
+ }