Commit c02b5710 authored by Lei Wang's avatar Lei Wang Committed by GitHub
Browse files

bump version into v0.1.0 (#76)

parent a6fe61e2
0.0.1 0.1.0
\ No newline at end of file \ No newline at end of file
...@@ -292,7 +292,8 @@ class TileLangBuilPydCommand(build_py): ...@@ -292,7 +292,8 @@ class TileLangBuilPydCommand(build_py):
# Copy CUTLASS to the package directory # Copy CUTLASS to the package directory
CUTLASS_PREBUILD_ITEMS = [ CUTLASS_PREBUILD_ITEMS = [
"3rdparty/cutlass", "3rdparty/cutlass/include",
"3rdparty/cutlass/tools",
] ]
for item in CUTLASS_PREBUILD_ITEMS: for item in CUTLASS_PREBUILD_ITEMS:
source_dir = os.path.join(ROOT_DIR, item) source_dir = os.path.join(ROOT_DIR, item)
...@@ -307,7 +308,8 @@ class TileLangBuilPydCommand(build_py): ...@@ -307,7 +308,8 @@ class TileLangBuilPydCommand(build_py):
shutil.copy2(source_dir, target_dir) shutil.copy2(source_dir, target_dir)
# copy compoable kernel to the package directory # copy compoable kernel to the package directory
CK_PREBUILD_ITEMS = [ CK_PREBUILD_ITEMS = [
"3rdparty/composable_kernel", "3rdparty/composable_kernel/include",
"3rdparty/composable_kernel/library",
] ]
for item in CK_PREBUILD_ITEMS: for item in CK_PREBUILD_ITEMS:
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