8aea5edb29
* Fix typo in copyright * Minor README improvements - Prevent underscores from being interpreted as italics in test name format. - Switch URL to HTTPS. * Update docs scripts config - Allow run_doc.sh and run_doxygen.sh to be called from any directory. * Add docs build to Jenkins
18 γραμμές
296 B
Bash
Εκτελέσιμο Αρχείο
18 γραμμές
296 B
Bash
Εκτελέσιμο Αρχείο
#!/bin/bash
|
|
# # Copyright (c) 2019-2021 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
set -eu
|
|
|
|
# Make this directory the PWD
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# Rename our input file
|
|
cp ../src/nccl.h.in nccl.h
|
|
|
|
# Build the doxygen info
|
|
rm -rf docBin
|
|
doxygen Doxyfile
|
|
|
|
# Cleanup
|
|
rm nccl.h
|