Skip to content

Commit

Permalink
Merge pull request #1381 from jennloe/FixGEMMUnusedParams
Browse files Browse the repository at this point in the history
Fix unused parameter warnings in GEMM test.
  • Loading branch information
lucbv authored Apr 19, 2022
2 parents bb67442 + e65d78e commit ef0f8f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1775,6 +1775,11 @@ static inline void __gemm_copy_simd_view_to_3d_view(gemm_simd_args_t src,
Kokkos::deep_copy(dst, h_dst);
Kokkos::fence();
#else
// Avoid unused parameter warnings:
(void)src;
(void)dst;
(void)options;

Kokkos::abort(
"Cannot perform simd verification with cuda/10.2.2, rerun with -v 0");
#endif // #if (CUDA_VERSION != 10020)
Expand Down

0 comments on commit ef0f8f0

Please sign in to comment.