Add isnan (#423)

This commit is contained in:
Ayush Shridhar 2024-01-12 14:16:48 -05:00 committed by GitHub
parent 29081204d1
commit 1416e7b664
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 72 additions and 0 deletions

View File

@ -51,6 +51,7 @@ Operations
greater_equal
identity
inner
isnan
less
less_equal
linspace

View File

@ -1050,6 +1050,10 @@ array array_equal(
}
}
array isnan(const array& a, StreamOrDevice s /* = {} */) {
return not_equal(a, a, s);
}
array where(
const array& condition,
const array& x,

View File

@ -374,6 +374,8 @@ array_equal(const array& a, const array& b, StreamOrDevice s = {}) {
return array_equal(a, b, false, s);
}
array isnan(const array& a, StreamOrDevice s = {});
/** Select from x or y depending on condition. */
array where(
const array& condition,

View File

@ -1132,6 +1132,12 @@ void init_array(py::module_& m) {
py::kw_only(),
"stream"_a = none,
"See :func:`any`.")
.def(
"isnan",
&mlx::core::isnan,
py::kw_only(),
"stream"_a = none,
"See :func:`isnan`.")
.def(
"moveaxis",
&moveaxis,

View File

@ -1820,6 +1820,24 @@ void init_ops(py::module_& m) {
Returns:
array: The ceil of ``a``.
)pbdoc");
m.def(
"isnan",
&mlx::core::isnan,
"a"_a,
py::pos_only(),
py::kw_only(),
"stream"_a = none,
R"pbdoc(
isnan(a: array, stream: Union[None, Stream, Device] = None) -> array
Return a boolean array indicating which elements are NaN.
Args:
a (array): Input array.
Returns:
array: The array with boolean values indicating which elements are NaN.
)pbdoc");
m.def(
"moveaxis",
&moveaxis,

View File

@ -321,6 +321,21 @@ class TestOps(mlx_tests.MLXTestCase):
self.assertFalse(mx.array_equal(x, y))
self.assertTrue(mx.array_equal(x, y, equal_nan=True))
def test_isnan(self):
x = mx.array([0.0, float("nan")])
self.assertEqual(mx.isnan(x).tolist(), [False, True])
x = mx.array([0.0, float("nan")]).astype(mx.float16)
self.assertEqual(mx.isnan(x).tolist(), [False, True])
x = mx.array([0.0, float("nan")]).astype(mx.bfloat16)
self.assertEqual(mx.isnan(x).tolist(), [False, True])
x = mx.array([0.0, float("nan")]).astype(mx.complex64)
self.assertEqual(mx.isnan(x).tolist(), [False, True])
self.assertEqual(mx.isnan(0 * mx.array(float("inf"))).tolist(), True)
def test_tri(self):
for shape in [[4], [4, 4], [2, 10]]:
for diag in [-1, 0, 1, -2]:

View File

@ -479,6 +479,32 @@ TEST_CASE("test comparison ops") {
}
}
TEST_CASE("test is nan") {
array x(1.0f);
CHECK_FALSE(isnan(x).item<bool>());
array y(NAN);
CHECK(isnan(y).item<bool>());
array z = identity(7);
CHECK_FALSE(all(isnan(z)).item<bool>());
array w = array({1.0f, NAN, 2.0f});
CHECK_FALSE(all(isnan(w)).item<bool>());
array a(1.0f, bfloat16);
CHECK_FALSE(isnan(a).item<bool>());
array b(1.0f, float16);
CHECK_FALSE(isnan(b).item<bool>());
array c(NAN, bfloat16);
CHECK(isnan(c).item<bool>());
array d(NAN, float16);
CHECK(isnan(d).item<bool>());
}
TEST_CASE("test all close") {
array x(1.0f);
array y(1.0f);