Added detection of IBM/Power NVLink bridge device. Add NUMA support to PCI distance calculations. Added NCCL_IGNORE_CPU_AFFINITY env var. Fix memory leaks; GithubIssue#180 Compiler warning fix; GithubIssue#178 Replace non-standard variable length arrays. GithubIssue#171 Fix Tree+Shared Memory crash. GithubPR#185 Fix LL cleanup hang during long running DL jobs. Fix NCCL_RINGS environment variable handling. Added extra checks to catch repeat calls to ncclCommDestroy() GithubIssue#191 Improve bootstrap socket connection reliability at scale. Fix hostname hashing issue. GithubIssue#187 Code cleanup to rename all non device files from *.cu to *.cc
36 lines
840 B
Bash
36 lines
840 B
Bash
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2017-2019, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# See LICENSE.txt for license information
|
|
#
|
|
|
|
# To run from $BUILDDIR/
|
|
|
|
cd ..
|
|
NCCLDIR=`basename $PWD`
|
|
|
|
echo "Checking for unclean directory ..."
|
|
git clean -x -i
|
|
echo "Clean done."
|
|
echo "Checking for uncommited files ..."
|
|
if [ "`git status -s | wc -l`" != "0" ]; then
|
|
git status -s
|
|
echo "Some changes are not committed yet. Continue ? (Ctrl-C to abort)"
|
|
read
|
|
fi
|
|
|
|
cd ..
|
|
NCCL_MAJOR=${nccl:Major}
|
|
NCCL_MINOR=${nccl:Minor}
|
|
NCCL_PATCH=${nccl:Patch}
|
|
NCCL_SUFFIX=${nccl:Suffix}
|
|
NCCL_BUILD=${pkg:Revision}
|
|
|
|
NCCLNAME="nccl-src_${NCCL_MAJOR}.${NCCL_MINOR}.${NCCL_PATCH}${NCCL_SUFFIX}-${NCCL_BUILD}"
|
|
|
|
tar --exclude build \
|
|
--exclude ".git*" \
|
|
--exclude pkg/srctxz \
|
|
--transform "s/^$NCCLDIR/$NCCLNAME/" -Jcf $NCCLNAME.txz --owner=0 --group=0 $NCCLDIR
|