Skip to content

Commit d815424

Browse files
committed
Forward and backward are working.
1 parent 64c5c56 commit d815424

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

tests/conv_test.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,15 +255,20 @@ def conv_object(self, request, problem):
255255

256256
class TestTorchbindDisable(TestProductionModels):
257257
@pytest.fixture(scope="class")
258-
def extra_conv_constructor_args(self):
258+
def extra_conv_constructor_args(self, test_jax):
259+
if test_jax:
260+
pytest.skip("N/A for JAX")
259261
return {"use_opaque": True}
260262

261263

262264
class TestTorchTo(ConvCorrectness):
263265
problems = [mace_problems()[0]]
264266

265267
@pytest.fixture(params=problems, ids=lambda x: x.label, scope="class")
266-
def problem(self, request, dtype):
268+
def problem(self, request, dtype, test_jax):
269+
if test_jax:
270+
pytest.skip("N/A for JAX")
271+
267272
problem = request.param
268273
problem.irrep_dtype, problem.weight_dtype = dtype, dtype
269274
return problem

0 commit comments

Comments
 (0)