Skip to content

Commit

Permalink
Silence clang-tidy warnings about implicit widening conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Dec 6, 2024
1 parent 38f64cf commit fa2324f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/pika/async_cuda/tests/unit/cublas_matmul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ int pika_main(pika::program_options::variables_map& vm)
sizeMult = (std::min)(sizeMult, std::size_t(100));
sizeMult = (std::max)(sizeMult, std::size_t(1));
//
int block_size = 32;
std::size_t block_size = 32;

sMatrixSize matrix_size;
matrix_size.uiWA = 2 * block_size * sizeMult;
Expand Down

0 comments on commit fa2324f

Please sign in to comment.