masahi commented on a change in pull request #9399:
URL: https://github.com/apache/tvm/pull/9399#discussion_r739569145
##########
File path: python/tvm/contrib/cutlass/build.py
##########
@@ -16,11 +16,17 @@
# under the License.
# pylint: disable=invalid-name
"""Driver for partitioning and building a Relay module for CUTLASS offload."""
+import os
import tvm
from tvm import runtime, relay
from .gen_gemm import CutlassGemmProfiler
+def _get_cutlass_path():
+ tvm_root = os.path.join(os.path.dirname(os.path.realpath(__file__)),
"../../../../")
+ return os.path.join(tvm_root, "3rdparty/cutlass")
Review comment:
ok added a msg saying source build is required for cutlass.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]