Skip to content

Commit

Permalink
v0.5.2 (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
chhwang committed Jul 16, 2024
1 parent 7493e2f commit 40cb196
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cff-version: 1.2.0
title: "MSCCL++: A GPU-driven communication stack for scalable AI applications"
version: 0.5.1
version: 0.5.2
message: >-
If you use this project in your research, please cite it as below.
authors:
Expand Down Expand Up @@ -31,6 +31,9 @@ authors:
- given-names: Madan
family-names: Musuvathi
affiliation: Microsoft Research
- given-names: Caio
family-names: Rocha
affiliation: Microsoft Azure
- given-names: Olli
family-names: Saarikivi
affiliation: Microsoft Research
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

set(MSCCLPP_MAJOR "0")
set(MSCCLPP_MINOR "5")
set(MSCCLPP_PATCH "1")
set(MSCCLPP_PATCH "2")

set(MSCCLPP_SOVERSION ${MSCCLPP_MAJOR})
set(MSCCLPP_VERSION "${MSCCLPP_MAJOR}.${MSCCLPP_MINOR}.${MSCCLPP_PATCH}")
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "mscclpp"
copyright = "2023, MSCCL++ Team"
copyright = "2024, MSCCL++ Team"
author = "MSCCL++ Team"
release = "v0.5.1"
release = "v0.5.2"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion include/mscclpp/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#define MSCCLPP_MAJOR 0
#define MSCCLPP_MINOR 5
#define MSCCLPP_PATCH 1
#define MSCCLPP_PATCH 2
#define MSCCLPP_VERSION (MSCCLPP_MAJOR * 10000 + MSCCLPP_MINOR * 100 + MSCCLPP_PATCH)

#include <array>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "mscclpp"
version = "0.5.1"
version = "0.5.2"

[tool.scikit-build]
cmake.minimum-version = "3.25.0"
Expand Down

0 comments on commit 40cb196

Please sign in to comment.