Skip to content

Commit 02a2cba

Browse files
authored
bump version into v0.1.0 (#76)
1 parent 1b61cff commit 02a2cba

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.1
1+
0.1.0

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@ def run(self):
292292

293293
# Copy CUTLASS to the package directory
294294
CUTLASS_PREBUILD_ITEMS = [
295-
"3rdparty/cutlass",
295+
"3rdparty/cutlass/include",
296+
"3rdparty/cutlass/tools",
296297
]
297298
for item in CUTLASS_PREBUILD_ITEMS:
298299
source_dir = os.path.join(ROOT_DIR, item)
@@ -307,7 +308,8 @@ def run(self):
307308
shutil.copy2(source_dir, target_dir)
308309
# copy compoable kernel to the package directory
309310
CK_PREBUILD_ITEMS = [
310-
"3rdparty/composable_kernel",
311+
"3rdparty/composable_kernel/include",
312+
"3rdparty/composable_kernel/library",
311313
]
312314
for item in CK_PREBUILD_ITEMS:
313315
source_dir = os.path.join(ROOT_DIR, item)

0 commit comments

Comments
 (0)