File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
python/tvm/relax/backend/cuda Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1616# under the License.
1717
1818"""FlashInfer JIT compilation module for CUDA backend"""
19+ import hashlib
20+ import json
1921import os
2022import subprocess
2123from concurrent .futures import ThreadPoolExecutor
2224from pathlib import Path
2325from typing import List
24- import hashlib
25- import json
2626
2727import tvm
2828from tvm .target import Target
@@ -130,6 +130,7 @@ def get_object_file_path(src: Path) -> Path:
130130 FLASHINFER_CSRC_DIR ,
131131 FLASHINFER_TVM_BINDING_DIR ,
132132 Path (tvm_home ).resolve () / "include" ,
133+ Path (tvm_home ).resolve () / "ffi" / "include" ,
133134 Path (tvm_home ).resolve () / "3rdparty" / "dlpack" / "include" ,
134135 Path (tvm_home ).resolve () / "3rdparty" / "dmlc-core" / "include" ,
135136 ] + CUTLASS_INCLUDE_DIRS
You can’t perform that action at this time.
0 commit comments