Skip to content

Commit

Permalink
exclude chainer from tests for any/all
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozhnikov committed Sep 18, 2023
1 parent 3f1c740 commit d06ecc0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,8 @@ def test_reduction_imperatives_booleans():
"""Checks that any/all reduction works in all frameworks"""
x_np = numpy.asarray([(bit_count(x) % 2) == 0 for x in range(2**6)]).reshape([2] * 6)
for backend in imp_op_backends:
if backend.framework_name == "chainer":
continue # no support for bools
print("Reduction any/all tests for ", backend.framework_name)

for axis in range(6):
Expand Down

0 comments on commit d06ecc0

Please sign in to comment.