ruby-numo/numo-linalg

Crash when array is nil

kojix2 opened this issue · 2 comments

require 'numo/narray'
require 'numo/linalg'
a = nil
b = Numo::DFloat.new(3,3).seq

Numo::Linalg.matmul(a,b)
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html

中止 (コアダンプ)

This is a bug in NArray: ruby-numo/numo-narray@4039dfb

Thank you!