From 4e428dd86eb40d9b2f8ad7ef51d0cb8239c0a3f3 Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Thu, 16 Nov 2023 14:05:15 +0800 Subject: [PATCH] v0.4.1 (#172) * Fix graph optimization (#171) --- CITATION.cff | 2 +- CMakeLists.txt | 4 ++-- ark/include/ark.h | 2 +- docs/sphinx/source/conf.py | 4 ++-- pyproject.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 4db4e8dd3..c3409a923 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,6 +1,6 @@ cff-version: 1.2.0 title: "ARK: A GPU-driven system framework for scalable AI applications" -version: 0.4.0 +version: 0.4.1 message: >- If you use this project in your research, please cite it as below. authors: diff --git a/CMakeLists.txt b/CMakeLists.txt index de215cfe4..dc5741506 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ set(ARK_MAJOR "0") set(ARK_MINOR "4") -set(ARK_PATCH "0") +set(ARK_PATCH "1") set(ARK_VERSION "${ARK_MAJOR}.${ARK_MINOR}.${ARK_PATCH}") set(ARK_SOVERSION "${ARK_MAJOR}.${ARK_MINOR}") @@ -26,7 +26,7 @@ if(BYPASS_GPU_CHECK) elseif(USE_ROCM) message("Bypassing GPU check: using AMD/ROCm.") set(CMAKE_PREFIX_PATH "/opt/rocm;${CMAKE_PREFIX_PATH}") - find_package(hip REQUIRED) + find_package(hip REQUIRED) else() message(FATAL_ERROR "Bypassing GPU check: neither NVIDIA/CUDA nor AMD/ROCm is specified.") endif() diff --git a/ark/include/ark.h b/ark/include/ark.h index 1d59a78cc..61cd9e87b 100644 --- a/ark/include/ark.h +++ b/ark/include/ark.h @@ -11,7 +11,7 @@ #define ARK_MAJOR 0 #define ARK_MINOR 4 -#define ARK_PATCH 0 +#define ARK_PATCH 1 #define ARK_VERSION (ARK_MAJOR * 10000 + ARK_MINOR * 100 + ARK_PATCH) namespace ark { diff --git a/docs/sphinx/source/conf.py b/docs/sphinx/source/conf.py index 894d3aeaa..9ed76ab02 100644 --- a/docs/sphinx/source/conf.py +++ b/docs/sphinx/source/conf.py @@ -20,8 +20,8 @@ project = "ARK" copyright = "2023, ARK Team" author = "ARK Team" -version = "0.4.0" -release = "0.4.0" +version = "0.4.1" +release = "0.4.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 119820e6b..1d3fe2598 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "ark" -version = "0.4.0" +version = "0.4.1" [tool.scikit-build] cmake.minimum-version = "3.25"