Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
wvbbreu committed Nov 6, 2024
1 parent f2e6d33 commit 1ee98d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ TEST_CASE("Test cu::DeviceMemory", "[devicememory]") {
SECTION("Test cu::DeviceMemory with CU_MEMORYTYPE_DEVICE as host pointer") {
cu::DeviceMemory mem(sizeof(float), CU_MEMORYTYPE_DEVICE, 0);
float* ptr;
CHECK_NOTHROWS(ptr = mem);
CHECK_NOTHROW(ptr = mem);
}

SECTION("Test cu::DeviceMemory with CU_MEMORYTYPE_UNIFIED as host pointer") {
Expand Down

0 comments on commit 1ee98d8

Please sign in to comment.