Skip to content

Commit

Permalink
GTEST/UCT/CUDA: Fixed type.
Browse files Browse the repository at this point in the history
  • Loading branch information
rakhmets committed Feb 14, 2025
1 parent e5f9f9e commit 20bdcbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gtest/uct/cuda/test_cuda_copy_md.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ UCS_TEST_P(test_cuda_copy_md_multi_gpu, mem_query) {
ASSERT_EQ(cudaGetDevice(&device), cudaSuccess);
ASSERT_EQ(cudaSetDevice((device + 1) % num_devices), cudaSuccess);

const int size = 16;
auto mem = mem_alloc(size);
const size_t size = 16;
auto mem = mem_alloc(size);

EXPECT_EQ(cudaSetDevice(device), cudaSuccess);

Expand Down

0 comments on commit 20bdcbb

Please sign in to comment.