"vscode:/vscode.git/clone" did not exist on "ef2069132cd7a9b0dd44aab2b93f18b470ac2eeb"
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)
if(MIGRAPHX_ENABLE_ZENDNN)
find_path(ZENDNN_INC_PATH zendnn.hpp)
find_library(ZENDNN_LIB amdZenDNN)
find_library(BLIS_LIB blis)
if(WIN32)
find_library(BLIS_LIB AOCL-LibBlis-Win)
else()
find_library(BLIS_LIB blis)
endif()
elif(NOT WIN32)
find_package(dnnl REQUIRED)
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