Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions slangpy/tests/device/slang/test_cast_float16.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
def test_cast_float16(device_type: spy.DeviceType):
if device_type == spy.DeviceType.metal:
pytest.skip("float16 cast not supported on Metal")
if device_type == spy.DeviceType.cuda and (sys.platform == "linux" or sys.platform == "linux2"):
pytest.skip(
"Slang fails to find cuda_fp16.h header https://github.com/shader-slang/slang/issues/7037"
)

device = helpers.get_device(device_type)

Expand Down
5 changes: 0 additions & 5 deletions slangpy/tests/device/slang/test_float16.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@
@pytest.mark.parametrize("shader_model", helpers.all_shader_models_from(spy.ShaderModel.sm_6_2))
@pytest.mark.parametrize("device_type", helpers.DEFAULT_DEVICE_TYPES)
def test_float16(device_type: spy.DeviceType, shader_model: spy.ShaderModel, view: str):
if device_type == spy.DeviceType.cuda and (sys.platform == "linux" or sys.platform == "linux2"):
pytest.skip(
"Slang fails to find cuda_fp16.h header https://github.com/shader-slang/slang/issues/7037"
)

device = helpers.get_device(device_type)

np.random.seed(123)
Expand Down
3 changes: 0 additions & 3 deletions slangpy/tests/device/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
class PipelineTestContext:
def __init__(self, device_type: spy.DeviceType, size: int = 128) -> None:
super().__init__()
if device_type == spy.DeviceType.cuda:
pytest.skip("Texture access bug on CUDA")

self.device = helpers.get_device(type=device_type)
self.output_texture = self.device.create_texture(
format=spy.Format.rgba32_float,
Expand Down
4 changes: 0 additions & 4 deletions slangpy/tests/device/test_print.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
def test_print(device_type: spy.DeviceType):
if device_type == spy.DeviceType.metal:
pytest.skip("Slang bug https://github.com/shader-slang/slang/issues/6764")
if device_type == spy.DeviceType.cuda and (sys.platform == "linux" or sys.platform == "linux2"):
pytest.skip(
"Slang fails to find cuda_fp16.h header https://github.com/shader-slang/slang/issues/7037"
)

device = spy.Device(type=device_type, enable_print=True)
helpers.dispatch_compute(
Expand Down
4 changes: 0 additions & 4 deletions slangpy/tests/device/test_shader_cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,6 @@ def test_shader_cursor(device_type: spy.DeviceType, use_numpy: bool):
pytest.skip("Test shader doesn't currently compile on MoltenVK")
if device_type == spy.DeviceType.metal and use_numpy:
pytest.skip("Need to fix numpy bool handling")
if device_type == spy.DeviceType.cuda and (sys.platform == "linux" or sys.platform == "linux2"):
pytest.skip(
"Slang fails to find cuda_fp16.h header https://github.com/shader-slang/slang/issues/7037"
)

device = helpers.get_device(type=device_type)

Expand Down