Skip to content

Commit

Permalink
Disable test_block_copy with lower bound check.
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Enkovich <[email protected]>
  • Loading branch information
ienkovich committed Dec 6, 2024
1 parent 148ebf5 commit a74ee76
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/test/unit/language/test_block_pointer.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ def block_copy_kernel(a_ptr, b_ptr, N, BLOCK_SIZE: tl.constexpr, PADDING_OPTION:
for boundary_check in (None, "lower", "upper")
])
def test_block_copy(dtypes_str, n, padding_option, boundary_check, device):
if is_cpu() and boundary_check == "lower":
pytest.skip("Lower boundary check is NYI for CPU")

src_dtype_str = dtypes_str[0]
dst_dtype_str = dtypes_str[1]
src_dtype = getattr(torch, src_dtype_str)
Expand Down

0 comments on commit a74ee76

Please sign in to comment.