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
data/numo-narray-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
>= 0.9.1.1
|
data/run.gdb
ADDED
metadata
ADDED
@@ -0,0 +1,353 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cumo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Naotoshi Seo
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-05-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: numo-narray
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.9.1.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.9.1.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.15'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.15'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: Cumo is CUDA aware numerical library whose interface is highly compatible
|
56
|
+
with Ruby Numo.
|
57
|
+
email:
|
58
|
+
- sonots@gmail.com
|
59
|
+
executables: []
|
60
|
+
extensions:
|
61
|
+
- ext/cumo/extconf.rb
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- ".gitignore"
|
65
|
+
- ".travis.yml"
|
66
|
+
- 3rd_party/mkmf-cu/.gitignore
|
67
|
+
- 3rd_party/mkmf-cu/Gemfile
|
68
|
+
- 3rd_party/mkmf-cu/LICENSE
|
69
|
+
- 3rd_party/mkmf-cu/README.md
|
70
|
+
- 3rd_party/mkmf-cu/Rakefile
|
71
|
+
- 3rd_party/mkmf-cu/bin/mkmf-cu-nvcc
|
72
|
+
- 3rd_party/mkmf-cu/lib/mkmf-cu.rb
|
73
|
+
- 3rd_party/mkmf-cu/lib/mkmf-cu/cli.rb
|
74
|
+
- 3rd_party/mkmf-cu/lib/mkmf-cu/nvcc.rb
|
75
|
+
- 3rd_party/mkmf-cu/mkmf-cu.gemspec
|
76
|
+
- 3rd_party/mkmf-cu/test/test_mkmf-cu.rb
|
77
|
+
- CODE_OF_CONDUCT.md
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE.txt
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- bench/broadcast_fp32.rb
|
83
|
+
- bench/cumo_bench.rb
|
84
|
+
- bench/numo_bench.rb
|
85
|
+
- bench/reduction_fp32.rb
|
86
|
+
- bin/console
|
87
|
+
- bin/setup
|
88
|
+
- cumo.gemspec
|
89
|
+
- ext/cumo/cuda/cublas.c
|
90
|
+
- ext/cumo/cuda/driver.c
|
91
|
+
- ext/cumo/cuda/memory_pool.cpp
|
92
|
+
- ext/cumo/cuda/memory_pool_impl.cpp
|
93
|
+
- ext/cumo/cuda/memory_pool_impl.hpp
|
94
|
+
- ext/cumo/cuda/memory_pool_impl_test.cpp
|
95
|
+
- ext/cumo/cuda/nvrtc.c
|
96
|
+
- ext/cumo/cuda/runtime.c
|
97
|
+
- ext/cumo/cumo.c
|
98
|
+
- ext/cumo/depend.erb
|
99
|
+
- ext/cumo/extconf.rb
|
100
|
+
- ext/cumo/include/cumo.h
|
101
|
+
- ext/cumo/include/cumo/compat.h
|
102
|
+
- ext/cumo/include/cumo/cuda/cublas.h
|
103
|
+
- ext/cumo/include/cumo/cuda/cumo_thrust.hpp
|
104
|
+
- ext/cumo/include/cumo/cuda/cumo_thrust_complex.hpp
|
105
|
+
- ext/cumo/include/cumo/cuda/driver.h
|
106
|
+
- ext/cumo/include/cumo/cuda/memory_pool.h
|
107
|
+
- ext/cumo/include/cumo/cuda/nvrtc.h
|
108
|
+
- ext/cumo/include/cumo/cuda/runtime.h
|
109
|
+
- ext/cumo/include/cumo/indexer.h
|
110
|
+
- ext/cumo/include/cumo/intern.h
|
111
|
+
- ext/cumo/include/cumo/intern_fwd.h
|
112
|
+
- ext/cumo/include/cumo/intern_kernel.h
|
113
|
+
- ext/cumo/include/cumo/narray.h
|
114
|
+
- ext/cumo/include/cumo/narray_kernel.h
|
115
|
+
- ext/cumo/include/cumo/ndloop.h
|
116
|
+
- ext/cumo/include/cumo/reduce_kernel.h
|
117
|
+
- ext/cumo/include/cumo/template.h
|
118
|
+
- ext/cumo/include/cumo/template_kernel.h
|
119
|
+
- ext/cumo/include/cumo/types/bit.h
|
120
|
+
- ext/cumo/include/cumo/types/bit_kernel.h
|
121
|
+
- ext/cumo/include/cumo/types/complex.h
|
122
|
+
- ext/cumo/include/cumo/types/complex_kernel.h
|
123
|
+
- ext/cumo/include/cumo/types/complex_macro.h
|
124
|
+
- ext/cumo/include/cumo/types/complex_macro_kernel.h
|
125
|
+
- ext/cumo/include/cumo/types/dcomplex.h
|
126
|
+
- ext/cumo/include/cumo/types/dcomplex_kernel.h
|
127
|
+
- ext/cumo/include/cumo/types/dfloat.h
|
128
|
+
- ext/cumo/include/cumo/types/dfloat_kernel.h
|
129
|
+
- ext/cumo/include/cumo/types/float_def.h
|
130
|
+
- ext/cumo/include/cumo/types/float_def_kernel.h
|
131
|
+
- ext/cumo/include/cumo/types/float_macro.h
|
132
|
+
- ext/cumo/include/cumo/types/float_macro_kernel.h
|
133
|
+
- ext/cumo/include/cumo/types/int16.h
|
134
|
+
- ext/cumo/include/cumo/types/int16_kernel.h
|
135
|
+
- ext/cumo/include/cumo/types/int32.h
|
136
|
+
- ext/cumo/include/cumo/types/int32_kernel.h
|
137
|
+
- ext/cumo/include/cumo/types/int64.h
|
138
|
+
- ext/cumo/include/cumo/types/int64_kernel.h
|
139
|
+
- ext/cumo/include/cumo/types/int8.h
|
140
|
+
- ext/cumo/include/cumo/types/int8_kernel.h
|
141
|
+
- ext/cumo/include/cumo/types/int_macro.h
|
142
|
+
- ext/cumo/include/cumo/types/int_macro_kernel.h
|
143
|
+
- ext/cumo/include/cumo/types/real_accum.h
|
144
|
+
- ext/cumo/include/cumo/types/real_accum_kernel.h
|
145
|
+
- ext/cumo/include/cumo/types/robj_macro.h
|
146
|
+
- ext/cumo/include/cumo/types/robj_macro_kernel.h
|
147
|
+
- ext/cumo/include/cumo/types/robject.h
|
148
|
+
- ext/cumo/include/cumo/types/robject_kernel.h
|
149
|
+
- ext/cumo/include/cumo/types/scomplex.h
|
150
|
+
- ext/cumo/include/cumo/types/scomplex_kernel.h
|
151
|
+
- ext/cumo/include/cumo/types/sfloat.h
|
152
|
+
- ext/cumo/include/cumo/types/sfloat_kernel.h
|
153
|
+
- ext/cumo/include/cumo/types/uint16.h
|
154
|
+
- ext/cumo/include/cumo/types/uint16_kernel.h
|
155
|
+
- ext/cumo/include/cumo/types/uint32.h
|
156
|
+
- ext/cumo/include/cumo/types/uint32_kernel.h
|
157
|
+
- ext/cumo/include/cumo/types/uint64.h
|
158
|
+
- ext/cumo/include/cumo/types/uint64_kernel.h
|
159
|
+
- ext/cumo/include/cumo/types/uint8.h
|
160
|
+
- ext/cumo/include/cumo/types/uint8_kernel.h
|
161
|
+
- ext/cumo/include/cumo/types/uint_macro.h
|
162
|
+
- ext/cumo/include/cumo/types/uint_macro_kernel.h
|
163
|
+
- ext/cumo/include/cumo/types/xint_macro.h
|
164
|
+
- ext/cumo/include/cumo/types/xint_macro_kernel.h
|
165
|
+
- ext/cumo/narray/SFMT-params.h
|
166
|
+
- ext/cumo/narray/SFMT-params19937.h
|
167
|
+
- ext/cumo/narray/SFMT.c
|
168
|
+
- ext/cumo/narray/SFMT.h
|
169
|
+
- ext/cumo/narray/array.c
|
170
|
+
- ext/cumo/narray/data.c
|
171
|
+
- ext/cumo/narray/gen/cogen.rb
|
172
|
+
- ext/cumo/narray/gen/cogen_kernel.rb
|
173
|
+
- ext/cumo/narray/gen/def/bit.rb
|
174
|
+
- ext/cumo/narray/gen/def/dcomplex.rb
|
175
|
+
- ext/cumo/narray/gen/def/dfloat.rb
|
176
|
+
- ext/cumo/narray/gen/def/int16.rb
|
177
|
+
- ext/cumo/narray/gen/def/int32.rb
|
178
|
+
- ext/cumo/narray/gen/def/int64.rb
|
179
|
+
- ext/cumo/narray/gen/def/int8.rb
|
180
|
+
- ext/cumo/narray/gen/def/robject.rb
|
181
|
+
- ext/cumo/narray/gen/def/scomplex.rb
|
182
|
+
- ext/cumo/narray/gen/def/sfloat.rb
|
183
|
+
- ext/cumo/narray/gen/def/uint16.rb
|
184
|
+
- ext/cumo/narray/gen/def/uint32.rb
|
185
|
+
- ext/cumo/narray/gen/def/uint64.rb
|
186
|
+
- ext/cumo/narray/gen/def/uint8.rb
|
187
|
+
- ext/cumo/narray/gen/erbpp2.rb
|
188
|
+
- ext/cumo/narray/gen/narray_def.rb
|
189
|
+
- ext/cumo/narray/gen/spec.rb
|
190
|
+
- ext/cumo/narray/gen/tmpl/accum.c
|
191
|
+
- ext/cumo/narray/gen/tmpl/accum_binary.c
|
192
|
+
- ext/cumo/narray/gen/tmpl/accum_binary_kernel.cu
|
193
|
+
- ext/cumo/narray/gen/tmpl/accum_index.c
|
194
|
+
- ext/cumo/narray/gen/tmpl/accum_index_kernel.cu
|
195
|
+
- ext/cumo/narray/gen/tmpl/accum_kernel.cu
|
196
|
+
- ext/cumo/narray/gen/tmpl/alloc_func.c
|
197
|
+
- ext/cumo/narray/gen/tmpl/allocate.c
|
198
|
+
- ext/cumo/narray/gen/tmpl/aref.c
|
199
|
+
- ext/cumo/narray/gen/tmpl/aref_cpu.c
|
200
|
+
- ext/cumo/narray/gen/tmpl/aset.c
|
201
|
+
- ext/cumo/narray/gen/tmpl/binary.c
|
202
|
+
- ext/cumo/narray/gen/tmpl/binary2.c
|
203
|
+
- ext/cumo/narray/gen/tmpl/binary2_kernel.cu
|
204
|
+
- ext/cumo/narray/gen/tmpl/binary_kernel.cu
|
205
|
+
- ext/cumo/narray/gen/tmpl/binary_s.c
|
206
|
+
- ext/cumo/narray/gen/tmpl/binary_s_kernel.cu
|
207
|
+
- ext/cumo/narray/gen/tmpl/bincount.c
|
208
|
+
- ext/cumo/narray/gen/tmpl/cast.c
|
209
|
+
- ext/cumo/narray/gen/tmpl/cast_array.c
|
210
|
+
- ext/cumo/narray/gen/tmpl/class.c
|
211
|
+
- ext/cumo/narray/gen/tmpl/class_kernel.cu
|
212
|
+
- ext/cumo/narray/gen/tmpl/clip.c
|
213
|
+
- ext/cumo/narray/gen/tmpl/coerce_cast.c
|
214
|
+
- ext/cumo/narray/gen/tmpl/complex_accum_kernel.cu
|
215
|
+
- ext/cumo/narray/gen/tmpl/cond_binary.c
|
216
|
+
- ext/cumo/narray/gen/tmpl/cond_binary_kernel.cu
|
217
|
+
- ext/cumo/narray/gen/tmpl/cond_unary.c
|
218
|
+
- ext/cumo/narray/gen/tmpl/cum.c
|
219
|
+
- ext/cumo/narray/gen/tmpl/each.c
|
220
|
+
- ext/cumo/narray/gen/tmpl/each_with_index.c
|
221
|
+
- ext/cumo/narray/gen/tmpl/ewcomp.c
|
222
|
+
- ext/cumo/narray/gen/tmpl/ewcomp_kernel.cu
|
223
|
+
- ext/cumo/narray/gen/tmpl/extract.c
|
224
|
+
- ext/cumo/narray/gen/tmpl/extract_cpu.c
|
225
|
+
- ext/cumo/narray/gen/tmpl/extract_data.c
|
226
|
+
- ext/cumo/narray/gen/tmpl/eye.c
|
227
|
+
- ext/cumo/narray/gen/tmpl/eye_kernel.cu
|
228
|
+
- ext/cumo/narray/gen/tmpl/fill.c
|
229
|
+
- ext/cumo/narray/gen/tmpl/fill_kernel.cu
|
230
|
+
- ext/cumo/narray/gen/tmpl/float_accum_kernel.cu
|
231
|
+
- ext/cumo/narray/gen/tmpl/format.c
|
232
|
+
- ext/cumo/narray/gen/tmpl/format_to_a.c
|
233
|
+
- ext/cumo/narray/gen/tmpl/frexp.c
|
234
|
+
- ext/cumo/narray/gen/tmpl/gemm.c
|
235
|
+
- ext/cumo/narray/gen/tmpl/init_class.c
|
236
|
+
- ext/cumo/narray/gen/tmpl/init_module.c
|
237
|
+
- ext/cumo/narray/gen/tmpl/inspect.c
|
238
|
+
- ext/cumo/narray/gen/tmpl/lib.c
|
239
|
+
- ext/cumo/narray/gen/tmpl/lib_kernel.cu
|
240
|
+
- ext/cumo/narray/gen/tmpl/logseq.c
|
241
|
+
- ext/cumo/narray/gen/tmpl/logseq_kernel.cu
|
242
|
+
- ext/cumo/narray/gen/tmpl/map_with_index.c
|
243
|
+
- ext/cumo/narray/gen/tmpl/median.c
|
244
|
+
- ext/cumo/narray/gen/tmpl/minmax.c
|
245
|
+
- ext/cumo/narray/gen/tmpl/module.c
|
246
|
+
- ext/cumo/narray/gen/tmpl/module_kernel.cu
|
247
|
+
- ext/cumo/narray/gen/tmpl/new_dim0.c
|
248
|
+
- ext/cumo/narray/gen/tmpl/new_dim0_kernel.cu
|
249
|
+
- ext/cumo/narray/gen/tmpl/poly.c
|
250
|
+
- ext/cumo/narray/gen/tmpl/pow.c
|
251
|
+
- ext/cumo/narray/gen/tmpl/pow_kernel.cu
|
252
|
+
- ext/cumo/narray/gen/tmpl/powint.c
|
253
|
+
- ext/cumo/narray/gen/tmpl/qsort.c
|
254
|
+
- ext/cumo/narray/gen/tmpl/rand.c
|
255
|
+
- ext/cumo/narray/gen/tmpl/rand_norm.c
|
256
|
+
- ext/cumo/narray/gen/tmpl/real_accum_kernel.cu
|
257
|
+
- ext/cumo/narray/gen/tmpl/seq.c
|
258
|
+
- ext/cumo/narray/gen/tmpl/seq_kernel.cu
|
259
|
+
- ext/cumo/narray/gen/tmpl/set2.c
|
260
|
+
- ext/cumo/narray/gen/tmpl/sort.c
|
261
|
+
- ext/cumo/narray/gen/tmpl/sort_index.c
|
262
|
+
- ext/cumo/narray/gen/tmpl/store.c
|
263
|
+
- ext/cumo/narray/gen/tmpl/store_array.c
|
264
|
+
- ext/cumo/narray/gen/tmpl/store_array_kernel.cu
|
265
|
+
- ext/cumo/narray/gen/tmpl/store_bit.c
|
266
|
+
- ext/cumo/narray/gen/tmpl/store_bit_kernel.cu
|
267
|
+
- ext/cumo/narray/gen/tmpl/store_from.c
|
268
|
+
- ext/cumo/narray/gen/tmpl/store_from_kernel.cu
|
269
|
+
- ext/cumo/narray/gen/tmpl/store_kernel.cu
|
270
|
+
- ext/cumo/narray/gen/tmpl/store_numeric.c
|
271
|
+
- ext/cumo/narray/gen/tmpl/to_a.c
|
272
|
+
- ext/cumo/narray/gen/tmpl/unary.c
|
273
|
+
- ext/cumo/narray/gen/tmpl/unary2.c
|
274
|
+
- ext/cumo/narray/gen/tmpl/unary_kernel.cu
|
275
|
+
- ext/cumo/narray/gen/tmpl/unary_ret2.c
|
276
|
+
- ext/cumo/narray/gen/tmpl/unary_s.c
|
277
|
+
- ext/cumo/narray/gen/tmpl/unary_s_kernel.cu
|
278
|
+
- ext/cumo/narray/gen/tmpl_bit/allocate.c
|
279
|
+
- ext/cumo/narray/gen/tmpl_bit/aref.c
|
280
|
+
- ext/cumo/narray/gen/tmpl_bit/aref_cpu.c
|
281
|
+
- ext/cumo/narray/gen/tmpl_bit/aset.c
|
282
|
+
- ext/cumo/narray/gen/tmpl_bit/binary.c
|
283
|
+
- ext/cumo/narray/gen/tmpl_bit/bit_count.c
|
284
|
+
- ext/cumo/narray/gen/tmpl_bit/bit_count_cpu.c
|
285
|
+
- ext/cumo/narray/gen/tmpl_bit/bit_count_kernel.cu
|
286
|
+
- ext/cumo/narray/gen/tmpl_bit/bit_reduce.c
|
287
|
+
- ext/cumo/narray/gen/tmpl_bit/each.c
|
288
|
+
- ext/cumo/narray/gen/tmpl_bit/each_with_index.c
|
289
|
+
- ext/cumo/narray/gen/tmpl_bit/extract.c
|
290
|
+
- ext/cumo/narray/gen/tmpl_bit/extract_cpu.c
|
291
|
+
- ext/cumo/narray/gen/tmpl_bit/fill.c
|
292
|
+
- ext/cumo/narray/gen/tmpl_bit/format.c
|
293
|
+
- ext/cumo/narray/gen/tmpl_bit/format_to_a.c
|
294
|
+
- ext/cumo/narray/gen/tmpl_bit/inspect.c
|
295
|
+
- ext/cumo/narray/gen/tmpl_bit/mask.c
|
296
|
+
- ext/cumo/narray/gen/tmpl_bit/none_p.c
|
297
|
+
- ext/cumo/narray/gen/tmpl_bit/store_array.c
|
298
|
+
- ext/cumo/narray/gen/tmpl_bit/store_bit.c
|
299
|
+
- ext/cumo/narray/gen/tmpl_bit/store_from.c
|
300
|
+
- ext/cumo/narray/gen/tmpl_bit/to_a.c
|
301
|
+
- ext/cumo/narray/gen/tmpl_bit/unary.c
|
302
|
+
- ext/cumo/narray/gen/tmpl_bit/where.c
|
303
|
+
- ext/cumo/narray/gen/tmpl_bit/where2.c
|
304
|
+
- ext/cumo/narray/index.c
|
305
|
+
- ext/cumo/narray/kwargs.c
|
306
|
+
- ext/cumo/narray/math.c
|
307
|
+
- ext/cumo/narray/narray.c
|
308
|
+
- ext/cumo/narray/ndloop.c
|
309
|
+
- ext/cumo/narray/rand.c
|
310
|
+
- ext/cumo/narray/step.c
|
311
|
+
- ext/cumo/narray/struct.c
|
312
|
+
- lib/cumo.rb
|
313
|
+
- lib/cumo/cuda.rb
|
314
|
+
- lib/cumo/cuda/compile_error.rb
|
315
|
+
- lib/cumo/cuda/compiler.rb
|
316
|
+
- lib/cumo/cuda/device.rb
|
317
|
+
- lib/cumo/cuda/link_state.rb
|
318
|
+
- lib/cumo/cuda/module.rb
|
319
|
+
- lib/cumo/cuda/nvrtc_program.rb
|
320
|
+
- lib/cumo/linalg.rb
|
321
|
+
- lib/cumo/narray.rb
|
322
|
+
- lib/cumo/narray/extra.rb
|
323
|
+
- lib/erbpp.rb
|
324
|
+
- lib/erbpp/line_number.rb
|
325
|
+
- lib/erbpp/narray_def.rb
|
326
|
+
- numo-narray-version
|
327
|
+
- run.gdb
|
328
|
+
homepage: https://github.com/sonots/cumo
|
329
|
+
licenses:
|
330
|
+
- BSD-3-Clause
|
331
|
+
metadata: {}
|
332
|
+
post_install_message:
|
333
|
+
rdoc_options: []
|
334
|
+
require_paths:
|
335
|
+
- lib
|
336
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
337
|
+
requirements:
|
338
|
+
- - ">="
|
339
|
+
- !ruby/object:Gem::Version
|
340
|
+
version: '0'
|
341
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
342
|
+
requirements:
|
343
|
+
- - ">="
|
344
|
+
- !ruby/object:Gem::Version
|
345
|
+
version: '0'
|
346
|
+
requirements: []
|
347
|
+
rubyforge_project:
|
348
|
+
rubygems_version: 2.6.11
|
349
|
+
signing_key:
|
350
|
+
specification_version: 4
|
351
|
+
summary: Cumo is CUDA aware numerical library whose interface is highly compatible
|
352
|
+
with Ruby Numo
|
353
|
+
test_files: []
|