r""" Returns True if two arrays are element-wise equal within a tolerance. This function follows the api from :any:`numpy.allclose` See: https://numpy.org/doc/stable/reference/generated/numpy.allclose.html
(self, a, b, rtol=1e-05, atol=1e-08, equal_nan=False)
| 860 | raise NotImplementedError() |
| 861 | |
| 862 | def allclose(self, a, b, rtol=1e-05, atol=1e-08, equal_nan=False): |
| 863 | r""" |
| 864 | Returns True if two arrays are element-wise equal within a tolerance. |
| 865 | |
| 866 | This function follows the api from :any:`numpy.allclose` |
| 867 | |
| 868 | See: https://numpy.org/doc/stable/reference/generated/numpy.allclose.html |
| 869 | """ |
| 870 | raise NotImplementedError() |
| 871 | |
| 872 | def dtype_device(self, a): |
| 873 | r""" |
no outgoing calls