From 8c5c5de2981978a32de5aa137d5b540e2a7e489a Mon Sep 17 00:00:00 2001 From: Gajanan Choudhary Date: Mon, 12 Aug 2024 14:59:31 -0500 Subject: [PATCH] [Doc][Web] Fix build ## Changes * One-liner fix in the ["Building the project with DPC++" webpage](https://oneapi-src.github.io/oneMKL/building_the_project_with_dpcpp.html) to use `MKLCPU` backend instead of the incorrectly twice-used `MKLGPU` backend. --- docs/building_the_project_with_dpcpp.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/building_the_project_with_dpcpp.rst b/docs/building_the_project_with_dpcpp.rst index 40ac91ea8..e33a78046 100644 --- a/docs/building_the_project_with_dpcpp.rst +++ b/docs/building_the_project_with_dpcpp.rst @@ -44,7 +44,7 @@ for Windows`_ for building on Windows): mkdir build && cd build cmake .. -DCMAKE_CXX_COMPILER=$CXX_COMPILER \ # Should be icpx or clang++ -DCMAKE_C_COMPILER=$C_COMPILER \ # Should be icx or clang - -DENABLE_MKLGPU_BACKEND=False \ # Optional: The MKLCPU backend is True by default. + -DENABLE_MKLCPU_BACKEND=False \ # Optional: The MKLCPU backend is True by default. -DENABLE_MKLGPU_BACKEND=False \ # Optional: The MKLGPU backend is True by default. -DENABLE__BACKEND=True \ # Enable any other backend(s) (optional) -DENABLE__BACKEND=True \ # Multiple backends can be enabled at once.