SciSharp / NumSharp

High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
https://github.com/SciSharp
Apache License 2.0
1.34k stars 188 forks source link

IsClose is not implemented and allclose test is ignored #449

Open koliyo opened 3 years ago

koliyo commented 3 years ago

These should probably be removed from the API if they are not properly implemented?

        [Ignore("TODO: fix this test")]
        [TestMethod]
        public void np_allclose_1D()
        public override NDArray<bool> IsClose(NDArray a, NDArray b, double rtol = 1.0E-5, double atol = 1.0E-8, bool equal_nan = false)
        {
            // ... lots of commeted out code
           return null;
        }