From c16c0c568140a7d363cea707d45e3e53c0fb07d2 Mon Sep 17 00:00:00 2001 From: LeiWang1999 Date: Tue, 11 Feb 2025 15:53:07 +0000 Subject: [PATCH] bump version into v0.1.0 --- VERSION | 2 +- setup.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 8a9ecc2ea..6c6aa7cb0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.1 \ No newline at end of file +0.1.0 \ No newline at end of file diff --git a/setup.py b/setup.py index cef302bed..805becda2 100644 --- a/setup.py +++ b/setup.py @@ -292,7 +292,8 @@ def run(self): # Copy CUTLASS to the package directory CUTLASS_PREBUILD_ITEMS = [ - "3rdparty/cutlass", + "3rdparty/cutlass/include", + "3rdparty/cutlass/tools", ] for item in CUTLASS_PREBUILD_ITEMS: source_dir = os.path.join(ROOT_DIR, item) @@ -307,7 +308,8 @@ def run(self): shutil.copy2(source_dir, target_dir) # copy compoable kernel to the package directory CK_PREBUILD_ITEMS = [ - "3rdparty/composable_kernel", + "3rdparty/composable_kernel/include", + "3rdparty/composable_kernel/library", ] for item in CK_PREBUILD_ITEMS: source_dir = os.path.join(ROOT_DIR, item)