diff --git a/include/cutlass/version.h b/include/cutlass/version.h index 41d78322..71cdcae1 100644 --- a/include/cutlass/version.h +++ b/include/cutlass/version.h @@ -35,7 +35,7 @@ #include #define CUTLASS_MAJOR 4 -#define CUTLASS_MINOR 0 +#define CUTLASS_MINOR 1 #define CUTLASS_PATCH 0 #ifdef CUTLASS_VERSIONS_GENERATED diff --git a/python/cutlass/__init__.py b/python/cutlass/__init__.py index bc2a98d9..35cb4eba 100644 --- a/python/cutlass/__init__.py +++ b/python/cutlass/__init__.py @@ -133,7 +133,7 @@ def get_option_registry(): this._option_registry = OptionRegistry(device_cc()) return this._option_registry -this.__version__ = '4.0.0' +this.__version__ = '4.1.0' from cutlass.backend import create_memory_pool from cutlass.emit.pytorch import pytorch diff --git a/python/setup_library.py b/python/setup_library.py index 3738e24d..875ba62d 100644 --- a/python/setup_library.py +++ b/python/setup_library.py @@ -36,7 +36,7 @@ from setuptools import setup def perform_setup(): setup( name='cutlass_library', - version='4.0.0', + version='4.1.0', description='CUTLASS library generation scripts', packages=['cutlass_library'] ) diff --git a/python/setup_pycute.py b/python/setup_pycute.py index b84a228a..7e8a99e0 100644 --- a/python/setup_pycute.py +++ b/python/setup_pycute.py @@ -36,7 +36,7 @@ from setuptools import setup def perform_setup(): setup( name='pycute', - version='4.0.0', + version='4.1.0', description='Python implementation of CuTe', packages=['pycute'], )