Closed toddsundsted closed 6 years ago
The following both cause the Ruby runtime to crash:
a = MXNet::Symbol.var('a') a.send(:infer_shape_impl, false) # => crash a.infer_type # => crash
The cause is access to a NULL/nil value in the respective C functions.
NULL
nil
See https://github.com/mrkn/mxnet.rb/pull/29 for a fix.
The following both cause the Ruby runtime to crash:
The cause is access to a
NULL
/nil
value in the respective C functions.See https://github.com/mrkn/mxnet.rb/pull/29 for a fix.