Skip to content

Commit

Permalink
Remove unneeded cudasim skips
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Jul 27, 2023
1 parent 2e16e44 commit 68c006c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion numba/cuda/tests/cudapy/test_intrinsics.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,6 @@ def test_hmul_ptx(self):
self.assertIn('mul.f16', ptx)

@skip_unless_cc_53
@skip_on_cudasim('NVVM not supported in the simulator')
def test_hdiv_scalar(self):
compiled = cuda.jit("void(f2[:], f2, f2)")(simple_hdiv_scalar)
ary = np.zeros(1, dtype=np.float16)
Expand Down
1 change: 0 additions & 1 deletion numba/cuda/tests/cudapy/test_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ def test_floordiv(self):
self.operator_template(operator.floordiv)

@skip_unless_cc_53
@skip_on_cudasim('NVVM not supported in the simulator')
def test_fp16_binary(self):
functions = (simple_fp16add, simple_fp16sub, simple_fp16mul,
simple_fp16_div_scalar)
Expand Down

0 comments on commit 68c006c

Please sign in to comment.