mirror of
https://github.com/ROCm/jax.git
synced 2025-04-19 05:16:06 +00:00
Relax Bazel maximum version check.
Remove debug print from lax_numpy_test.py.
This commit is contained in:
parent
c65ccda374
commit
fafe69bd8f
@ -289,7 +289,7 @@ def main():
|
||||
|
||||
# Find a working Bazel.
|
||||
bazel_path = get_bazel_path(args.bazel_path)
|
||||
check_bazel_version(bazel_path, min_version="0.24.0", max_version="0.25.0")
|
||||
check_bazel_version(bazel_path, min_version="0.24.0", max_version=None)
|
||||
print("Bazel binary path: {}".format(bazel_path))
|
||||
|
||||
python_bin_path = get_python_bin_path(args.python_bin_path)
|
||||
|
@ -1586,8 +1586,6 @@ class LaxBackedNumpyTests(jtu.JaxTestCase):
|
||||
x = dtype(x)
|
||||
expected = onp_op(x)
|
||||
actual = lnp_op(x)
|
||||
if expected != actual:
|
||||
print(x, expected, actual)
|
||||
self.assertAllClose(expected, actual, check_dtypes=True)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user