cumo 0.2.4 → 0.2.5
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +23 -24
- data/bench/cumo_bench.rb +1 -0
- data/ext/cumo/cuda/memory_pool.cpp +9 -1
- data/ext/cumo/cuda/memory_pool_impl.cpp +2 -13
- data/ext/cumo/cumo.c +4 -4
- data/ext/cumo/depend.erb +1 -1
- data/ext/cumo/extconf.rb +2 -0
- data/ext/cumo/include/cumo.h +4 -4
- data/ext/cumo/include/cumo/indexer.h +50 -0
- data/ext/cumo/include/cumo/intern.h +1 -0
- data/ext/cumo/include/cumo/narray.h +20 -1
- data/ext/cumo/include/cumo/narray_kernel.h +10 -0
- data/ext/cumo/include/cumo/ndloop.h +1 -1
- data/ext/cumo/narray/array.c +8 -2
- data/ext/cumo/narray/gen/tmpl/store_array.c +15 -3
- data/ext/cumo/narray/gen/tmpl_bit/store_array.c +10 -2
- data/ext/cumo/narray/index.c +77 -43
- data/ext/cumo/narray/narray.c +11 -2
- data/ext/cumo/narray/ndloop.c +49 -1
- data/ext/cumo/narray/ndloop_kernel.cu +97 -0
- data/ext/cumo/narray/step.c +56 -250
- data/lib/cumo/narray/extra.rb +50 -1
- metadata +4 -4
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: cumo
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.2. | 
| 4 | 
            +
              version: 0.2.5
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Naotoshi Seo
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2019-03-04 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: numo-narray
         | 
| @@ -311,6 +311,7 @@ files: | |
| 311 311 | 
             
            - ext/cumo/narray/math.c
         | 
| 312 312 | 
             
            - ext/cumo/narray/narray.c
         | 
| 313 313 | 
             
            - ext/cumo/narray/ndloop.c
         | 
| 314 | 
            +
            - ext/cumo/narray/ndloop_kernel.cu
         | 
| 314 315 | 
             
            - ext/cumo/narray/rand.c
         | 
| 315 316 | 
             
            - ext/cumo/narray/step.c
         | 
| 316 317 | 
             
            - ext/cumo/narray/struct.c
         | 
| @@ -346,8 +347,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 346 347 | 
             
                - !ruby/object:Gem::Version
         | 
| 347 348 | 
             
                  version: '0'
         | 
| 348 349 | 
             
            requirements: []
         | 
| 349 | 
            -
             | 
| 350 | 
            -
            rubygems_version: 2.7.6
         | 
| 350 | 
            +
            rubygems_version: 3.0.1
         | 
| 351 351 | 
             
            signing_key: 
         | 
| 352 352 | 
             
            specification_version: 4
         | 
| 353 353 | 
             
            summary: Cumo is CUDA aware numerical library whose interface is highly compatible
         |