From 60778d10716d7cd4184958803bd030ae8736d04f Mon Sep 17 00:00:00 2001 From: Megvii Engine Team Date: Wed, 16 Sep 2020 11:37:26 +0800 Subject: [PATCH] chore(deps): add cutlass --- .gitmodules | 3 +++ third_party/cutlass | 1 + third_party/prepare.sh | 1 + 3 files changed, 5 insertions(+) create mode 160000 third_party/cutlass diff --git a/.gitmodules b/.gitmodules index 788b3aaa2..406e26d59 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,3 +37,6 @@ [submodule "third_party/llvm-project"] path = third_party/llvm-project url = https://github.com/llvm/llvm-project.git +[submodule "third_party/cutlass"] + path = third_party/cutlass + url = https://github.com/MegEngine/cutlass.git diff --git a/third_party/cutlass b/third_party/cutlass new file mode 160000 index 000000000..f6272f0d7 --- /dev/null +++ b/third_party/cutlass @@ -0,0 +1 @@ +Subproject commit f6272f0d74df54af1358fd399f9bc6d3d5f3fb4e diff --git a/third_party/prepare.sh b/third_party/prepare.sh index 4301b4863..f4676aeea 100755 --- a/third_party/prepare.sh +++ b/third_party/prepare.sh @@ -21,6 +21,7 @@ git submodule update --init Halide git submodule update --init protobuf git submodule update --init flatbuffers git submodule update --init gtest +git submodule update --init cutlass git submodule update --init cpuinfo source ./apply-patches.sh -- GitLab