Skip to content
Open
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
2 changes: 1 addition & 1 deletion cuda_bindings/tests/legacy_api/test_legacy_kernelParams.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ class testStruct(ctypes.Structure):
ASSERT_DRV(err)


@pytest.mark.parametrize("pass_by_address", [False, True], ids=["by-address", "not-by-address"])
@pytest.mark.parametrize("pass_by_address", [False, True], ids=["not-by-address", "by-address"])
def test_kernelParams_buffer_protocol(pass_by_address, device):
err, uvaSupported = cuda.cuDeviceGetAttribute(
cuda.CUdevice_attribute.CU_DEVICE_ATTRIBUTE_UNIFIED_ADDRESSING, device
Expand Down
2 changes: 1 addition & 1 deletion cuda_bindings/tests/test_kernelParams.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ class testStruct(ctypes.Structure):
ASSERT_DRV(err)


@pytest.mark.parametrize("pass_by_address", [False, True], ids=["by-address", "not-by-address"])
@pytest.mark.parametrize("pass_by_address", [False, True], ids=["not-by-address", "by-address"])
def test_kernelParams_buffer_protocol(pass_by_address, device):
err, uvaSupported = cuda.cuDeviceGetAttribute(
cuda.CUdevice_attribute.CU_DEVICE_ATTRIBUTE_UNIFIED_ADDRESSING, device
Expand Down
Loading