2019-05-24 15:03:56 -06:00
|
|
|
#!/bin/bash
|
2021-02-18 16:37:37 -07:00
|
|
|
# # Copyright (c) 2019-2021 Advanced Micro Devices, Inc. All rights reserved.
|
2019-05-24 15:03:56 -06:00
|
|
|
|
2021-02-18 16:37:37 -07:00
|
|
|
set -eu
|
2019-05-24 15:03:56 -06:00
|
|
|
|
2021-02-18 16:37:37 -07:00
|
|
|
# Make this directory the PWD
|
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
|
|
|
|
|
|
# Rename our input file
|
|
|
|
|
cp ../src/nccl.h.in nccl.h
|
2019-05-24 15:03:56 -06:00
|
|
|
|
2021-02-18 16:37:37 -07:00
|
|
|
# Build the doxygen info
|
|
|
|
|
rm -rf docBin
|
2019-05-24 15:03:56 -06:00
|
|
|
doxygen Doxyfile
|
|
|
|
|
|
2021-02-18 16:37:37 -07:00
|
|
|
# Cleanup
|
|
|
|
|
rm nccl.h
|