From 8247256fd70b725d3aca4b30e09dd8cc077d8a6f Mon Sep 17 00:00:00 2001 From: Vladislav Perevezentsev Date: Wed, 11 Dec 2024 07:34:42 -0800 Subject: [PATCH] Enable build MKL intel backend on cuda --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46d3e65b7e71..50f965fc7208 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -112,8 +112,8 @@ if(_use_onemkl_interfaces) set(ENABLE_CUSOLVER_BACKEND True) set(ENABLE_CUFFT_BACKEND True) # set(ENABLE_CURAND_BACKEND True) - set(ENABLE_MKLGPU_BACKEND False) - set(ENABLE_MKLCPU_BACKEND False) + set(ENABLE_MKLGPU_BACKEND True) + set(ENABLE_MKLCPU_BACKEND True) endif() if(DPNP_ONEMKL_INTERFACES_DIR)