Skip to content

Commit

Permalink
[SYCL-BLAS] fix SYCL-BLAS backend names in backend table (oneapi-src#349
Browse files Browse the repository at this point in the history
)
  • Loading branch information
andrewtbarker authored and normallytangent committed Aug 6, 2024
1 parent 67c0f61 commit e8f8acf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/oneapi/mkl/detail/backends_table.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static std::map<domain, std::map<device, std::vector<const char*>>> libraries =
#ifdef ENABLE_NETLIB_BACKEND
LIB_NAME("blas_netlib"),
#endif
#ifdef ENABLE_SYCLBLAS_INTEL_CPU
#ifdef ENABLE_SYCLBLAS_BACKEND_INTEL_CPU
LIB_NAME("blas_syclblas"),
#endif
} },
Expand All @@ -62,7 +62,7 @@ static std::map<domain, std::map<device, std::vector<const char*>>> libraries =
#ifdef ENABLE_MKLGPU_BACKEND
LIB_NAME("blas_mklgpu"),
#endif
#ifdef ENABLE_SYCLBLAS_INTEL_GPU
#ifdef ENABLE_SYCLBLAS_BACKEND_INTEL_GPU
LIB_NAME("blas_syclblas"),
#endif
} },
Expand All @@ -71,7 +71,7 @@ static std::map<domain, std::map<device, std::vector<const char*>>> libraries =
#ifdef ENABLE_ROCBLAS_BACKEND
LIB_NAME("blas_rocblas"),
#endif
#ifdef ENABLE_SYCLBLAS_AMD_GPU
#ifdef ENABLE_SYCLBLAS_BACKEND_AMD_GPU
LIB_NAME("blas_syclblas"),
#endif
} },
Expand All @@ -80,7 +80,7 @@ static std::map<domain, std::map<device, std::vector<const char*>>> libraries =
#ifdef ENABLE_CUBLAS_BACKEND
LIB_NAME("blas_cublas"),
#endif
#ifdef ENABLE_SYCLBLAS_NVIDIA_GPU
#ifdef ENABLE_SYCLBLAS_BACKEND_NVIDIA_GPU
LIB_NAME("blas_syclblas"),
#endif
} } } },
Expand Down

0 comments on commit e8f8acf

Please sign in to comment.