ruby-numo / numo-narray

Ruby/Numo::NArray - New NArray class library
http://ruby-numo.github.io/narray/
BSD 3-Clause "New" or "Revised" License
415 stars 41 forks source link

calling 'reshape!' method of a view (fatal) #119

Closed kojix2 closed 5 years ago

kojix2 commented 5 years ago

Hello.

require 'numo/narray'

a = Numo::UInt8[1]
v = a.view
v.reshape!(1,1)

free(): invalid pointer 中止 (コアダンプ)

It may be a bug

masa16 commented 5 years ago

Fixed: https://github.com/ruby-numo/numo-narray/commit/1b64388ea412306879bef0e7d63aaeda5d1903b4 Thank you for reporting.

kojix2 commented 5 years ago

Thank you!