This commit is contained in:
Changho Hwang
2024-05-04 16:51:48 -07:00
committed by GitHub
parent 0650371b54
commit 9c2a96060a
5 changed files with 10 additions and 7 deletions

View File

@@ -1,12 +1,15 @@
cff-version: 1.2.0
title: "MSCCL++: A GPU-driven communication stack for scalable AI applications"
version: 0.4.3
version: 0.5.0
message: >-
If you use this project in your research, please cite it as below.
authors:
- given-names: Peng
family-names: Cheng
affiliation: Microsoft Research
- given-names: Roshan
family-names: Dathathri
affiliation: Microsoft Research
- given-names: Changho
family-names: Hwang
affiliation: Microsoft Research

View File

@@ -2,8 +2,8 @@
# Licensed under the MIT license.
set(MSCCLPP_MAJOR "0")
set(MSCCLPP_MINOR "4")
set(MSCCLPP_PATCH "3")
set(MSCCLPP_MINOR "5")
set(MSCCLPP_PATCH "0")
set(MSCCLPP_SOVERSION ${MSCCLPP_MAJOR})
set(MSCCLPP_VERSION "${MSCCLPP_MAJOR}.${MSCCLPP_MINOR}.${MSCCLPP_PATCH}")

View File

@@ -9,7 +9,7 @@
project = "mscclpp"
copyright = "2023, MSCCL++ Team"
author = "MSCCL++ Team"
release = "v0.4.3"
release = "v0.5.0"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@@ -5,8 +5,8 @@
#define MSCCLPP_CORE_HPP_
#define MSCCLPP_MAJOR 0
#define MSCCLPP_MINOR 4
#define MSCCLPP_PATCH 3
#define MSCCLPP_MINOR 5
#define MSCCLPP_PATCH 0
#define MSCCLPP_VERSION (MSCCLPP_MAJOR * 10000 + MSCCLPP_MINOR * 100 + MSCCLPP_PATCH)
#include <array>

View File

@@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"
[project]
name = "mscclpp"
version = "0.4.3"
version = "0.5.0"
[tool.scikit-build]
cmake.minimum-version = "3.25.0"