Skip to content

Commit

Permalink
Fix unused parameter warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jennloe committed Apr 7, 2022
1 parent 403a417 commit e8dd918
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 e8dd918

Please sign in to comment.