Skip to content

Commit 40cb196

Browse files
authored
v0.5.2 (#328)
1 parent 7493e2f commit 40cb196

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CITATION.cff

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cff-version: 1.2.0
22
title: "MSCCL++: A GPU-driven communication stack for scalable AI applications"
3-
version: 0.5.1
3+
version: 0.5.2
44
message: >-
55
If you use this project in your research, please cite it as below.
66
authors:
@@ -31,6 +31,9 @@ authors:
3131
- given-names: Madan
3232
family-names: Musuvathi
3333
affiliation: Microsoft Research
34+
- given-names: Caio
35+
family-names: Rocha
36+
affiliation: Microsoft Azure
3437
- given-names: Olli
3538
family-names: Saarikivi
3639
affiliation: Microsoft Research

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
set(MSCCLPP_MAJOR "0")
55
set(MSCCLPP_MINOR "5")
6-
set(MSCCLPP_PATCH "1")
6+
set(MSCCLPP_PATCH "2")
77

88
set(MSCCLPP_SOVERSION ${MSCCLPP_MAJOR})
99
set(MSCCLPP_VERSION "${MSCCLPP_MAJOR}.${MSCCLPP_MINOR}.${MSCCLPP_PATCH}")

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

99
project = "mscclpp"
10-
copyright = "2023, MSCCL++ Team"
10+
copyright = "2024, MSCCL++ Team"
1111
author = "MSCCL++ Team"
12-
release = "v0.5.1"
12+
release = "v0.5.2"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

include/mscclpp/core.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define MSCCLPP_MAJOR 0
88
#define MSCCLPP_MINOR 5
9-
#define MSCCLPP_PATCH 1
9+
#define MSCCLPP_PATCH 2
1010
#define MSCCLPP_VERSION (MSCCLPP_MAJOR * 10000 + MSCCLPP_MINOR * 100 + MSCCLPP_PATCH)
1111

1212
#include <array>

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"
77

88
[project]
99
name = "mscclpp"
10-
version = "0.5.1"
10+
version = "0.5.2"
1111

1212
[tool.scikit-build]
1313
cmake.minimum-version = "3.25.0"

0 commit comments

Comments
 (0)