comaniac commented on a change in pull request #9399:
URL: https://github.com/apache/tvm/pull/9399#discussion_r739388696
##########
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:
- This path seems not working for wheel/install? We don't include any
3rdparty source code in the wheel IIUC.
- Accordingly, we may need to check if this path exists or not somewhere
(here or in `build_cutlass_kernel`).
--
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]