File tree Expand file tree Collapse file tree 6 files changed +13
-18
lines changed Expand file tree Collapse file tree 6 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 11cff-version : 1.2.0
22title : " ARK: A GPU-driven system framework for scalable AI applications"
3- version : 0.3 .0
3+ version : 0.4 .0
44message : >-
55 If you use this project in your research, please cite it as below.
66authors :
Original file line number Diff line number Diff line change 22# Licensed under the MIT license.
33
44set (ARK_MAJOR "0" )
5- set (ARK_MINOR "3 " )
5+ set (ARK_MINOR "4 " )
66set (ARK_PATCH "0" )
77
88set (ARK_VERSION "${ARK_MAJOR} .${ARK_MINOR} .${ARK_PATCH} " )
Original file line number Diff line number Diff line change @@ -28,22 +28,17 @@ ARK provides a set of APIs for users to express their distributed deep learning
2828
2929ARK is under active development and a part of its features will be added in a future release. The following describes key features of each version.
3030
31- ### New in ARK v0.3 (Latest Release)
31+ ### New in ARK v0.4 (Latest Release)
3232
33- * Enable heuristic model graph optimization
34- * Revise Python interfaces
35- * Add more operators & support mixed-precision models & support ` bfloat16 `
36- * Add a Llama2-7B example
37- * Fix connection setup bugs for large & distributed models
38- * Fix correctness bugs from a few operators
39- * Minor scheduler improvements
33+ * Support AMD GPUs (CDNA2, single-GPU only)
34+ * Add high-performance AllReduce & AllGather algorithms with MSLL
35+ * Fix major bugs in the scheduler
4036
41- See details from https://github.com/microsoft/ark/issues/113 .
37+ See details from https://github.com/microsoft/ark/issues/137 .
4238
43- ### ARK v0.4 (TBU, Nov . 2023)
39+ ### ARK v0.5 (TBU, Dec . 2023)
4440
45- * Support AMD GPUs
46- * Add high-performance AllReduce & AllGather algorithms
41+ * Multi-GPU support for AMD GPUs
4742* Add multi-GPU LLM examples
4843* Improve Python unit tests & code coverage
4944
Original file line number Diff line number Diff line change 1010#include < vector>
1111
1212#define ARK_MAJOR 0
13- #define ARK_MINOR 3
13+ #define ARK_MINOR 4
1414#define ARK_PATCH 0
1515#define ARK_VERSION (ARK_MAJOR * 10000 + ARK_MINOR * 100 + ARK_PATCH)
1616
Original file line number Diff line number Diff line change 2020project = "ARK"
2121copyright = "2023, ARK Team"
2222author = "ARK Team"
23- version = "0.3 .0"
24- release = "0.3 .0"
23+ version = "0.4 .0"
24+ release = "0.4 .0"
2525
2626# -- General configuration ---------------------------------------------------
2727
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44
55[project ]
66name = " ark"
7- version = " 0.3 .0"
7+ version = " 0.4 .0"
88
99[tool .scikit-build ]
1010cmake.minimum-version = " 3.25"
You can’t perform that action at this time.
0 commit comments