Skip to content

Commit

Permalink
v0.4.1 (#172)
Browse files Browse the repository at this point in the history
* Fix graph optimization (#171)
  • Loading branch information
chhwang authored Nov 16, 2023
1 parent 908f0c5 commit 4e428dd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand All @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion ark/include/ark.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4e428dd

Please sign in to comment.