onnxruntime/cmake/external/cutlass.cmake

13 lines
252 B
CMake
Raw Normal View History

include(FetchContent)
onnxruntime_fetchcontent_declare(
cutlass
URL ${DEP_URL_cutlass}
URL_HASH SHA1=${DEP_SHA1_cutlass}
EXCLUDE_FROM_ALL
)
FetchContent_GetProperties(cutlass)
if(NOT cutlass_POPULATED)
FetchContent_Populate(cutlass)
endif()