mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-04 23:59:56 +00:00
13 lines
349 B
CMake
13 lines
349 B
CMake
|
|
include(FetchContent)
|
||
|
|
FetchContent_Declare(
|
||
|
|
cudnn_frontend
|
||
|
|
URL ${DEP_URL_cudnn_frontend}
|
||
|
|
URL_HASH SHA1=${DEP_SHA1_cudnn_frontend}
|
||
|
|
)
|
||
|
|
|
||
|
|
set(CUDNN_FRONTEND_BUILD_SAMPLES OFF)
|
||
|
|
set(CUDNN_FRONTEND_BUILD_UNIT_TESTS OFF)
|
||
|
|
set(CUDNN_FRONTEND_BUILD_PYTHON_BINDINGS OFF)
|
||
|
|
set(CUDNN_PATH ${onnxruntime_CUDNN_HOME})
|
||
|
|
FetchContent_MakeAvailable(cudnn_frontend)
|