From 4b553faf83159e684943493e126efabe7b874f3b Mon Sep 17 00:00:00 2001 From: Petr Kurapov Date: Mon, 7 Oct 2024 05:39:04 -0700 Subject: [PATCH] Fix include path mismatch (#372) --- cmake/onednn_lite_config.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/onednn_lite_config.cmake b/cmake/onednn_lite_config.cmake index c22380801..c075614e4 100644 --- a/cmake/onednn_lite_config.cmake +++ b/cmake/onednn_lite_config.cmake @@ -28,7 +28,7 @@ if(${DNNL_CPU_RUNTIME} STREQUAL "OMP") endif() if(${DNNL_CPU_RUNTIME} STREQUAL "TBB") - include("${DNNL_PATH}/cmake/TBB.cmake") + find_package(TBB REQUIRED) endif() ########## copied from main cmake file of DNNL