RuntimeError: CUTLASS submodule not found. Did you forget to run `git submodule update --init --recursive` ?
时间: 2024-05-12 11:18:57 浏览: 447
IOS Object-C 中Runtime详解及实例代码
The error message suggests that the CUTLASS submodule is missing and needs to be initialized. To fix the issue, you can try running the following command in your terminal:
```
git submodule update --init --recursive
```
This should initialize the CUTLASS submodule and resolve the error.
阅读全文