From 8e88d2026898da3c905e4d8a2d2ab429e55cd91f Mon Sep 17 00:00:00 2001 From: George Wu Date: Tue, 13 Apr 2021 11:40:26 -0700 Subject: [PATCH] fix dnnl build instruction typo (#7325) --- docs/how-to/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to/build.md b/docs/how-to/build.md index 6066d6dfcd..f70f701fdb 100644 --- a/docs/how-to/build.md +++ b/docs/how-to/build.md @@ -332,7 +332,7 @@ To build for Intel GPU, replace dnnl_opencl_root with the path of the Intel SDK `.\build.bat --use_dnnl --dnnl_gpu_runtime ocl --dnnl_opencl_root "c:\program files (x86)\intelswtools\sw_dev_tools\opencl\sdk"` ###### Linux -`./build.sh --use_dnnl --dnnl_gpu_runtime ocl --dnnl_opencl_root "/opt/intel/sw_dev_tools/opencl-sdk"`s +`./build.sh --use_dnnl --dnnl_gpu_runtime ocl --dnnl_opencl_root "/opt/intel/sw_dev_tools/opencl-sdk"` ---