Skip to content

Commit

Permalink
Update benchmark/cublas/blas3/gemm.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: pgorlani <[email protected]>
  • Loading branch information
OuadiElfarouki and pgorlani authored Feb 15, 2024
1 parent 23c8efd commit feaf0fe
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions benchmark/cublas/blas3/gemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,9 @@ static inline void cublas_routine(args_t&&... args) {
CUBLAS_CHECK(cublasSgemm(std::forward<args_t>(args)...));
} else if constexpr (std::is_same_v<scalar_t, double>) {
CUBLAS_CHECK(cublasDgemm(std::forward<args_t>(args)...));
}
#ifdef BLAS_ENABLE_HALF
else if constexpr (std::is_same_v<scalar_t, cl::sycl::half>) {
} else if constexpr (std::is_same_v<scalar_t, cl::sycl::half>) {
CUBLAS_CHECK(cublasHgemm(std::forward<args_t>(args)...));
}
#endif
return;
}

Expand Down

0 comments on commit feaf0fe

Please sign in to comment.