Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/blas/backends/cublas/cublas_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ inline cublasSideMode_t get_cublas_side_mode(oneapi::math::side lr) {

template <typename T>
inline cudaDataType_t get_cublas_datatype() {
static_assert(false);
static_assert(sizeof(T) && false, "Type T has no corresponding cuBLAS type");
}

template <>
Expand Down
2 changes: 1 addition & 1 deletion src/blas/backends/rocblas/rocblas_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ inline rocblas_side get_rocblas_side_mode(oneapi::math::side lr) {

template <typename T>
inline rocblas_datatype get_rocblas_datatype() {
static_assert(false);
static_assert(sizeof(T) && false, "Type T has no corresponding rocBLAS type");
}

template <>
Expand Down