update nccl version

This commit is contained in:
Dun Liang 2021-03-03 16:40:40 +08:00
parent 3c6b5c3b53
commit 357147c8ee
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
# This file is subject to the terms and conditions defined in
# file 'LICENSE.txt', which is part of this source code package.
# ***************************************************************
__version__ = '1.2.2.34'
__version__ = '1.2.2.35'
from . import lock
with lock.lock_scope():
ori_int = int

View File

@ -270,12 +270,12 @@ def setup_cutt():
def install_nccl(root_folder):
url = "https://github.com/NVIDIA/nccl/archive/v2.6.4-1.tar.gz"
url = "https://github.com/NVIDIA/nccl/archive/v2.8.4-1.tar.gz"
filename = "nccl.tgz"
fullname = os.path.join(root_folder, filename)
dirname = os.path.join(root_folder, "nccl-2.6.4-1")
true_md5 = "38d7a9e98d95a99df0a4f1ad6fb50fa7"
dirname = os.path.join(root_folder, "nccl-2.8.4-1")
true_md5 = "900666558c5bc43e0a5e84045b88a06f"
if os.path.exists(fullname):
md5 = run_cmd('md5sum '+fullname).split()[0]