numo-narray icon indicating copy to clipboard operation
numo-narray copied to clipboard

Ruby/Numo::NArray - New NArray class library

Results 54 numo-narray issues
Sort by recently updated
recently updated
newest added

Hi authors of Numo-narray I'm working with biological networks so I need to use matrix operations frecuently. In my project I was using the old Nmatrix library but recently I...

Would it be of interest to add SIMD support? For example Numpy uses https://github.com/mathlibrary/usimd

Hi. First of all, thanks for Numo. I propose to make numo ractor-safe in order to use it with ruby 3 ractors by calling rb_ractor_safe(true) in the C-code. Otherwise it...

Is it possible to use the custom data structure of numo-narray with my own C extension? Or do I have to re-implement some of the code again?

Dear NArray developers, I am the developer of [opencl_ruby_ffi](https://github.com/Nanosim-LIG/opencl-ruby), OpenCL bindings for ruby. In order to interface the previous version of NArray with [FFI](https://github.com/ffi/ffi) based library I have hacked a...

I found that `x.inplace + i` is much slower than `x.add!(i)`. ``` $ time ruby -rnarray -e 'x = NVector[0.0, 0.0, 0.0]; i = NVector[1.0, 1.0, 1.0]; 10000000.times { x.add!(i)...

Hello, Does this library support matrix inversion? The old version of NArray does but I can't find it here. I searched the Doc and 100 narray exercises but sadly I...

Hello, I have asked a question at stackoverflow concerning reading files into Numo::NArray and dynamically inserting rows/data. Would you care to show me the way or tell me if the...

## Expected behavior ```ruby a = Numo::Int32.new(3,3).seq a.diagonal = 0 a # [[0, 1, 2], # [3, 0, 5], # [6, 7, 0]] ``` ## Actual behavior Error ```console (irb):4:in...