Open gandalfh opened 3 years ago
This code behaves as expected on version 0.20.5 from NuGet (https://www.nuget.org/packages/NumSharp/)
var ones = np.ones((10, 1)); ones.negate();
var ones = np.ones((10, 1));
ones.negate();
But after upgrading to 0.3.0 a NotSupportedException is thrown:
at NumSharp.Backends.DefaultEngine.Negate(NDArray& nd) at NumSharp.NDArray.negate()
Related to #447
This code behaves as expected on version 0.20.5 from NuGet (https://www.nuget.org/packages/NumSharp/)
var ones = np.ones((10, 1));
ones.negate();
But after upgrading to 0.3.0 a NotSupportedException is thrown:
at NumSharp.Backends.DefaultEngine.Negate(NDArray& nd) at NumSharp.NDArray.negate()