Commit b207910c authored by Uros Petkovic's avatar Uros Petkovic Committed by Artur Wojcik
Browse files

Porting targets cpu cmake script for using ZenDNN and BLIS

parent 39d89ede
...@@ -61,7 +61,11 @@ option(MIGRAPHX_ENABLE_ZENDNN "" OFF) ...@@ -61,7 +61,11 @@ option(MIGRAPHX_ENABLE_ZENDNN "" OFF)
if(MIGRAPHX_ENABLE_ZENDNN) if(MIGRAPHX_ENABLE_ZENDNN)
find_path(ZENDNN_INC_PATH zendnn.hpp) find_path(ZENDNN_INC_PATH zendnn.hpp)
find_library(ZENDNN_LIB amdZenDNN) find_library(ZENDNN_LIB amdZenDNN)
if(WIN32)
find_library(BLIS_LIB AOCL-LibBlis-Win)
else()
find_library(BLIS_LIB blis) find_library(BLIS_LIB blis)
endif()
elif(NOT WIN32) elif(NOT WIN32)
find_package(dnnl REQUIRED) find_package(dnnl REQUIRED)
endif() endif()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment