Commit 6c0a5841 authored by Lei Wang's avatar Lei Wang Committed by LeiWang1999
Browse files

[Enhancement] Add Cython cache directory to setup.py (#643)

- Included the Cython cache directory in the list of source files for the TileLang build process, ensuring proper handling of cached Cython files during the build.
parent 2aded11a
...@@ -411,6 +411,7 @@ class TileLangBuilPydCommand(build_py): ...@@ -411,6 +411,7 @@ class TileLangBuilPydCommand(build_py):
# copy cython files # copy cython files
CYTHON_SRC = [ CYTHON_SRC = [
"tilelang/jit/adapter/cython/cython_wrapper.pyx", "tilelang/jit/adapter/cython/cython_wrapper.pyx",
"tilelang/jit/adapter/cython/.cycache",
] ]
for item in CYTHON_SRC: for item in CYTHON_SRC:
source_dir = os.path.join(ROOT_DIR, item) source_dir = os.path.join(ROOT_DIR, item)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment