microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
leca/groupQueryAttention

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

cmake/externals/cutlass.cmake

11lines · modecode

1include(FetchContent)
2FetchContent_Declare(
3 cutlass
4 GIT_REPOSITORY https://github.com/NVIDIA/cutlass.git
5 GIT_TAG v3.1.0
6)
7
8FetchContent_GetProperties(cutlass)
9if(NOT cutlass_POPULATED)
10 FetchContent_Populate(cutlass)
11endif()
12