We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 098d582 commit a041ea1Copy full SHA for a041ea1
tests/pallas/ops_test.py
@@ -1034,6 +1034,9 @@ def isnan(x_ref, o_ref):
1034
np.testing.assert_allclose(isnan(x), jnp.isnan(x))
1035
1036
def test_jnp_einsum_grad_y_pallas(self):
1037
+ if jtu.test_device_matches(["gpu"]):
1038
+ self.skipTest("This test ooms on gpu")
1039
+
1040
x = jnp.arange(128 * 256, dtype=jnp.float32).reshape((128, 256))
1041
y = jnp.arange(256 * 128, dtype=jnp.float32).reshape((128, 256))
1042
0 commit comments