Skip to content

Commit

Permalink
skip split mismatch test on 1 process
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiaComito committed Jun 19, 2023
1 parent 49197b3 commit 17ca24f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions heat/core/tests/test_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ def test___binary_bit_op_broadcast(self):
c = ht.array([1, 2, 3, 4], comm=ht.MPI_SELF)
with self.assertRaises(NotImplementedError):
b + c
with self.assertRaises(NotImplementedError):
a.resplit(1) * b
# skip tests on arm64 architecture
if platform.machine() != "arm64":
with self.assertRaises(TypeError):
ht.minimum(a, np.float128(1))
with self.assertRaises(TypeError):
ht.minimum(np.float128(1), a)
with self.assertRaises(NotImplementedError):
a.resplit(1) * b
with self.assertRaises(ValueError):
a[2:] * b

0 comments on commit 17ca24f

Please sign in to comment.