From e5419407c4c0e8405a481e1ea6e3820f7a83aaf0 Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Wed, 15 Jan 2020 17:54:27 -0700 Subject: [PATCH] Updating copyright notices for 2020. [ROCm/rccl commit: 20fa04d9b609dcaab5def59973b21060dd59a3cb] --- projects/rccl/CMakeLists.txt | 2 +- projects/rccl/Jenkinsfile | 2 +- projects/rccl/LICENSE.txt | 2 +- projects/rccl/Makefile | 1 + projects/rccl/NOTICES.txt | 4 ++-- projects/rccl/README.md | 2 +- projects/rccl/docker/dockerfile-build-centos | 1 + projects/rccl/docker/dockerfile-build-ubuntu-rock | 1 + projects/rccl/docker/dockerfile-install-centos | 1 + projects/rccl/docker/dockerfile-install-ubuntu | 1 + projects/rccl/docs/Doxyfile | 1 + projects/rccl/docs/run_doc.sh | 1 + projects/rccl/docs/run_doxygen.sh | 1 + projects/rccl/install.sh | 2 +- projects/rccl/src/Makefile | 1 + projects/rccl/src/bootstrap.cc | 1 + projects/rccl/src/channel.cc | 2 +- projects/rccl/src/collectives/all_gather.cc | 2 +- projects/rccl/src/collectives/all_reduce.cc | 2 +- projects/rccl/src/collectives/broadcast.cc | 2 +- projects/rccl/src/collectives/device/all_gather.h | 2 +- projects/rccl/src/collectives/device/all_reduce.h | 2 +- projects/rccl/src/collectives/device/broadcast.h | 2 +- projects/rccl/src/collectives/device/common.h | 2 +- projects/rccl/src/collectives/device/common_kernel.h | 2 +- projects/rccl/src/collectives/device/functions.cu | 2 +- projects/rccl/src/collectives/device/op128.h | 2 +- projects/rccl/src/collectives/device/primitives.h | 2 +- projects/rccl/src/collectives/device/prims_ll.h | 2 +- projects/rccl/src/collectives/device/prims_ll128.h | 2 +- projects/rccl/src/collectives/device/reduce.h | 2 +- projects/rccl/src/collectives/device/reduce_kernel.h | 2 +- projects/rccl/src/collectives/device/reduce_scatter.h | 2 +- projects/rccl/src/collectives/reduce.cc | 2 +- projects/rccl/src/collectives/reduce_scatter.cc | 2 +- projects/rccl/src/debug.cc | 2 +- projects/rccl/src/enqueue.cc | 2 +- projects/rccl/src/graph/connect.cc | 1 + projects/rccl/src/graph/search.cc | 1 + projects/rccl/src/graph/topo.cc | 2 +- projects/rccl/src/graph/topo.h | 1 + projects/rccl/src/graph/tuning.cc | 2 +- projects/rccl/src/group.cc | 2 +- projects/rccl/src/include/alloc.h | 1 + projects/rccl/src/include/checks.h | 2 +- projects/rccl/src/include/collectives.h | 2 +- projects/rccl/src/include/comm.h | 2 +- projects/rccl/src/include/core.h | 2 +- projects/rccl/src/include/devcomm.h | 2 +- projects/rccl/src/include/group.h | 2 +- projects/rccl/src/include/info.h | 2 +- projects/rccl/src/include/net.h | 2 +- projects/rccl/src/include/rccl_bfloat16.h | 2 +- projects/rccl/src/include/shm.h | 2 +- projects/rccl/src/init.cc | 2 +- projects/rccl/src/misc/argcheck.cc | 2 +- projects/rccl/src/misc/nvmlwrap_stub.cc | 2 +- projects/rccl/src/misc/utils.cc | 2 +- projects/rccl/src/nccl.h.in | 2 +- projects/rccl/src/transport.cc | 2 +- projects/rccl/src/transport/net.cc | 2 +- projects/rccl/src/transport/net_ib.cc | 2 +- projects/rccl/src/transport/net_socket.cc | 2 +- projects/rccl/src/transport/p2p.cc | 2 +- projects/rccl/test/CMakeLists.txt | 1 + projects/rccl/test/CorrectnessTest.hpp | 2 +- projects/rccl/test/test_AllGather.cpp | 2 +- projects/rccl/test/test_AllGather.hpp | 2 +- projects/rccl/test/test_AllReduce.cpp | 2 +- projects/rccl/test/test_AllReduce.hpp | 2 +- projects/rccl/test/test_AllReduceAbort.cpp | 2 +- projects/rccl/test/test_AllReduceAbort.hpp | 2 +- projects/rccl/test/test_Broadcast.cpp | 2 +- projects/rccl/test/test_Broadcast.hpp | 2 +- projects/rccl/test/test_BroadcastAbort.cpp | 2 +- projects/rccl/test/test_BroadcastAbort.hpp | 2 +- projects/rccl/test/test_CombinedCalls.cpp | 2 +- projects/rccl/test/test_CombinedCalls.hpp | 2 +- projects/rccl/test/test_GroupCalls.cpp | 2 +- projects/rccl/test/test_GroupCalls.hpp | 2 +- projects/rccl/test/test_Reduce.cpp | 2 +- projects/rccl/test/test_Reduce.hpp | 2 +- projects/rccl/test/test_ReduceScatter.cpp | 2 +- projects/rccl/test/test_ReduceScatter.hpp | 2 +- projects/rccl/tools/TransferBench/Makefile | 1 + projects/rccl/tools/TransferBench/TransferBench.cpp | 2 +- projects/rccl/tools/TransferBench/TransferBench.hpp | 2 +- projects/rccl/tools/rccl-prim-test/Makefile | 3 ++- projects/rccl/tools/rccl-prim-test/rccl_prim_test.cpp | 2 +- 89 files changed, 91 insertions(+), 74 deletions(-) diff --git a/projects/rccl/CMakeLists.txt b/projects/rccl/CMakeLists.txt index 81cd32af5f..936fbaaebb 100644 --- a/projects/rccl/CMakeLists.txt +++ b/projects/rccl/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. cmake_minimum_required(VERSION 2.8.12) diff --git a/projects/rccl/Jenkinsfile b/projects/rccl/Jenkinsfile index 358b5560c4..fc340fcf0b 100644 --- a/projects/rccl/Jenkinsfile +++ b/projects/rccl/Jenkinsfile @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -// Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. +// Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. // This shared library is available at https://github.com/ROCmSoftwarePlatform/rccl @Library('rocJenkins@rccl') _ diff --git a/projects/rccl/LICENSE.txt b/projects/rccl/LICENSE.txt index 60db84a684..2a454ff322 100644 --- a/projects/rccl/LICENSE.txt +++ b/projects/rccl/LICENSE.txt @@ -1,6 +1,6 @@ Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/projects/rccl/Makefile b/projects/rccl/Makefile index caed3d42ac..1d39312f9c 100644 --- a/projects/rccl/Makefile +++ b/projects/rccl/Makefile @@ -1,5 +1,6 @@ # # Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. +# Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # # See LICENSE.txt for license information # diff --git a/projects/rccl/NOTICES.txt b/projects/rccl/NOTICES.txt index 1b9bcc8eec..75794b0934 100644 --- a/projects/rccl/NOTICES.txt +++ b/projects/rccl/NOTICES.txt @@ -3,7 +3,7 @@ _______________________________________________________________ Dependencies on nvidia-nccl v2.3.7-1 (BSD3) Copyright (c) 2015-2018, NVIDIA CORPORATION. -Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. +Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -63,4 +63,4 @@ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The U.S. Department of Energy funded the development of this software -under subcontract 7078610 with Lawrence Berkeley National Laboratory. \ No newline at end of file +under subcontract 7078610 with Lawrence Berkeley National Laboratory. diff --git a/projects/rccl/README.md b/projects/rccl/README.md index 405b69127b..d260599f34 100644 --- a/projects/rccl/README.md +++ b/projects/rccl/README.md @@ -81,4 +81,4 @@ Please refer to the [Library documentation](http://rccl.readthedocs.io/) for cur All source code and accompanying documentation is copyright (c) 2015-2018, NVIDIA CORPORATION. All rights reserved. -All modifications are copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. +All modifications are copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. diff --git a/projects/rccl/docker/dockerfile-build-centos b/projects/rccl/docker/dockerfile-build-centos index 536f30c7f0..2f7e491a56 100644 --- a/projects/rccl/docker/dockerfile-build-centos +++ b/projects/rccl/docker/dockerfile-build-centos @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # This Dockerfile provides a starting point for a ROCm installation of rccl # Parameters related to building rccl diff --git a/projects/rccl/docker/dockerfile-build-ubuntu-rock b/projects/rccl/docker/dockerfile-build-ubuntu-rock index eab87449e0..60fe47ff7d 100644 --- a/projects/rccl/docker/dockerfile-build-ubuntu-rock +++ b/projects/rccl/docker/dockerfile-build-ubuntu-rock @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # Parameters related to building rccl ARG base_image diff --git a/projects/rccl/docker/dockerfile-install-centos b/projects/rccl/docker/dockerfile-install-centos index f7d7788935..2ccd6337f6 100644 --- a/projects/rccl/docker/dockerfile-install-centos +++ b/projects/rccl/docker/dockerfile-install-centos @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # Parameters related to building rccl ARG base_image diff --git a/projects/rccl/docker/dockerfile-install-ubuntu b/projects/rccl/docker/dockerfile-install-ubuntu index 1d03fbf2e3..d0b70e37c1 100644 --- a/projects/rccl/docker/dockerfile-install-ubuntu +++ b/projects/rccl/docker/dockerfile-install-ubuntu @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # Parameters related to building rccl ARG base_image diff --git a/projects/rccl/docs/Doxyfile b/projects/rccl/docs/Doxyfile index 42dae7cc30..8ee1e20c51 100644 --- a/projects/rccl/docs/Doxyfile +++ b/projects/rccl/docs/Doxyfile @@ -1,4 +1,5 @@ # Doxyfile 1.8.10 +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. diff --git a/projects/rccl/docs/run_doc.sh b/projects/rccl/docs/run_doc.sh index 902f2fc0a6..826b8ea2ec 100755 --- a/projects/rccl/docs/run_doc.sh +++ b/projects/rccl/docs/run_doc.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. if [ -d docBin ]; then rm -rf docBin diff --git a/projects/rccl/docs/run_doxygen.sh b/projects/rccl/docs/run_doxygen.sh index 2915cc8c0c..4424e76b82 100755 --- a/projects/rccl/docs/run_doxygen.sh +++ b/projects/rccl/docs/run_doxygen.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. if [ -d docBin ]; then rm -rf docBin diff --git a/projects/rccl/install.sh b/projects/rccl/install.sh index 05a2a02c1f..e7a676e880 100755 --- a/projects/rccl/install.sh +++ b/projects/rccl/install.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. # ################################################# # helper functions diff --git a/projects/rccl/src/Makefile b/projects/rccl/src/Makefile index b11de5e944..9ecb25327a 100644 --- a/projects/rccl/src/Makefile +++ b/projects/rccl/src/Makefile @@ -1,5 +1,6 @@ # # Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. +# Modifications Copyright (c) 2015-2020, Advanced Micro Devices, Inc. All rights reserved. # # See LICENSE.txt for license information # diff --git a/projects/rccl/src/bootstrap.cc b/projects/rccl/src/bootstrap.cc index 11ffc35cf0..0b0e2c105a 100644 --- a/projects/rccl/src/bootstrap.cc +++ b/projects/rccl/src/bootstrap.cc @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/channel.cc b/projects/rccl/src/channel.cc index 5a5903d3c8..220a62b925 100644 --- a/projects/rccl/src/channel.cc +++ b/projects/rccl/src/channel.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/all_gather.cc b/projects/rccl/src/collectives/all_gather.cc index 1959420e36..85a011cb0a 100644 --- a/projects/rccl/src/collectives/all_gather.cc +++ b/projects/rccl/src/collectives/all_gather.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/all_reduce.cc b/projects/rccl/src/collectives/all_reduce.cc index f6e73d6928..3386c59bd2 100644 --- a/projects/rccl/src/collectives/all_reduce.cc +++ b/projects/rccl/src/collectives/all_reduce.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/broadcast.cc b/projects/rccl/src/collectives/broadcast.cc index f096ac1f72..9b61101dbc 100644 --- a/projects/rccl/src/collectives/broadcast.cc +++ b/projects/rccl/src/collectives/broadcast.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/all_gather.h b/projects/rccl/src/collectives/device/all_gather.h index d0ea80a0d5..84ccfe5bac 100644 --- a/projects/rccl/src/collectives/device/all_gather.h +++ b/projects/rccl/src/collectives/device/all_gather.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/all_reduce.h b/projects/rccl/src/collectives/device/all_reduce.h index b1c97003c7..0ac8d86a91 100644 --- a/projects/rccl/src/collectives/device/all_reduce.h +++ b/projects/rccl/src/collectives/device/all_reduce.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/broadcast.h b/projects/rccl/src/collectives/device/broadcast.h index 8399af890f..e08219d695 100644 --- a/projects/rccl/src/collectives/device/broadcast.h +++ b/projects/rccl/src/collectives/device/broadcast.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/common.h b/projects/rccl/src/collectives/device/common.h index 90a2444aa5..e37d1a54c8 100644 --- a/projects/rccl/src/collectives/device/common.h +++ b/projects/rccl/src/collectives/device/common.h @@ -1,7 +1,7 @@ #include "hip/hip_runtime.h" /************************************************************************* * Copyright (c) 2017-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/common_kernel.h b/projects/rccl/src/collectives/device/common_kernel.h index 3999b3aa37..477308b449 100644 --- a/projects/rccl/src/collectives/device/common_kernel.h +++ b/projects/rccl/src/collectives/device/common_kernel.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/functions.cu b/projects/rccl/src/collectives/device/functions.cu index fc1b3930da..2158b6f262 100644 --- a/projects/rccl/src/collectives/device/functions.cu +++ b/projects/rccl/src/collectives/device/functions.cu @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/op128.h b/projects/rccl/src/collectives/device/op128.h index 193931f00e..cb1f227901 100644 --- a/projects/rccl/src/collectives/device/op128.h +++ b/projects/rccl/src/collectives/device/op128.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/primitives.h b/projects/rccl/src/collectives/device/primitives.h index 0ccdd21229..f2a175229f 100644 --- a/projects/rccl/src/collectives/device/primitives.h +++ b/projects/rccl/src/collectives/device/primitives.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/prims_ll.h b/projects/rccl/src/collectives/device/prims_ll.h index 4879571530..20ced038c2 100644 --- a/projects/rccl/src/collectives/device/prims_ll.h +++ b/projects/rccl/src/collectives/device/prims_ll.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/prims_ll128.h b/projects/rccl/src/collectives/device/prims_ll128.h index f01559b3fe..ab3c662cb8 100644 --- a/projects/rccl/src/collectives/device/prims_ll128.h +++ b/projects/rccl/src/collectives/device/prims_ll128.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/reduce.h b/projects/rccl/src/collectives/device/reduce.h index 96acebcf06..d000cf4206 100644 --- a/projects/rccl/src/collectives/device/reduce.h +++ b/projects/rccl/src/collectives/device/reduce.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/reduce_kernel.h b/projects/rccl/src/collectives/device/reduce_kernel.h index 92a2489896..7de8248c4a 100644 --- a/projects/rccl/src/collectives/device/reduce_kernel.h +++ b/projects/rccl/src/collectives/device/reduce_kernel.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/device/reduce_scatter.h b/projects/rccl/src/collectives/device/reduce_scatter.h index eabe5aa096..4db35e0beb 100644 --- a/projects/rccl/src/collectives/device/reduce_scatter.h +++ b/projects/rccl/src/collectives/device/reduce_scatter.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/reduce.cc b/projects/rccl/src/collectives/reduce.cc index f53437f86d..f53e41fc30 100644 --- a/projects/rccl/src/collectives/reduce.cc +++ b/projects/rccl/src/collectives/reduce.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/collectives/reduce_scatter.cc b/projects/rccl/src/collectives/reduce_scatter.cc index 0ded7c557a..43809358b9 100644 --- a/projects/rccl/src/collectives/reduce_scatter.cc +++ b/projects/rccl/src/collectives/reduce_scatter.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/debug.cc b/projects/rccl/src/debug.cc index b00e5d1df8..c3c0dfc9f2 100644 --- a/projects/rccl/src/debug.cc +++ b/projects/rccl/src/debug.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/enqueue.cc b/projects/rccl/src/enqueue.cc index 92290cade1..e501300fcc 100644 --- a/projects/rccl/src/enqueue.cc +++ b/projects/rccl/src/enqueue.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2017-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/graph/connect.cc b/projects/rccl/src/graph/connect.cc index 486cd2b14a..bf0bcb8b87 100644 --- a/projects/rccl/src/graph/connect.cc +++ b/projects/rccl/src/graph/connect.cc @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/graph/search.cc b/projects/rccl/src/graph/search.cc index 752b236c8b..a244ef8b1f 100644 --- a/projects/rccl/src/graph/search.cc +++ b/projects/rccl/src/graph/search.cc @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/graph/topo.cc b/projects/rccl/src/graph/topo.cc index 6e2e3382ac..04390940f4 100644 --- a/projects/rccl/src/graph/topo.cc +++ b/projects/rccl/src/graph/topo.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/graph/topo.h b/projects/rccl/src/graph/topo.h index 0c59c3176b..0410572838 100644 --- a/projects/rccl/src/graph/topo.h +++ b/projects/rccl/src/graph/topo.h @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/graph/tuning.cc b/projects/rccl/src/graph/tuning.cc index 5a8f201804..df2a901feb 100644 --- a/projects/rccl/src/graph/tuning.cc +++ b/projects/rccl/src/graph/tuning.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/group.cc b/projects/rccl/src/group.cc index fb7afa108e..49c7724f09 100644 --- a/projects/rccl/src/group.cc +++ b/projects/rccl/src/group.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/alloc.h b/projects/rccl/src/include/alloc.h index 601c362998..04a016aaba 100644 --- a/projects/rccl/src/include/alloc.h +++ b/projects/rccl/src/include/alloc.h @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/checks.h b/projects/rccl/src/include/checks.h index bf8cbd0d24..0bc6e4ede2 100644 --- a/projects/rccl/src/include/checks.h +++ b/projects/rccl/src/include/checks.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/collectives.h b/projects/rccl/src/include/collectives.h index ddefef2062..e7baba3f66 100644 --- a/projects/rccl/src/include/collectives.h +++ b/projects/rccl/src/include/collectives.h @@ -1,7 +1,7 @@ #include "hip/hip_runtime.h" /************************************************************************* * Copyright (c) 2017-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/comm.h b/projects/rccl/src/include/comm.h index abc3fa10fa..71548aec73 100644 --- a/projects/rccl/src/include/comm.h +++ b/projects/rccl/src/include/comm.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/core.h b/projects/rccl/src/include/core.h index 50e8a61152..a98e5090ba 100644 --- a/projects/rccl/src/include/core.h +++ b/projects/rccl/src/include/core.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/devcomm.h b/projects/rccl/src/include/devcomm.h index ea7e142a6d..a9aeddb8cb 100644 --- a/projects/rccl/src/include/devcomm.h +++ b/projects/rccl/src/include/devcomm.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/group.h b/projects/rccl/src/include/group.h index 4c91f07c77..ab75d01a1c 100644 --- a/projects/rccl/src/include/group.h +++ b/projects/rccl/src/include/group.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/info.h b/projects/rccl/src/include/info.h index 744f6b4dba..6eec677160 100644 --- a/projects/rccl/src/include/info.h +++ b/projects/rccl/src/include/info.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/net.h b/projects/rccl/src/include/net.h index 4d2737b99a..6a490da658 100644 --- a/projects/rccl/src/include/net.h +++ b/projects/rccl/src/include/net.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/include/rccl_bfloat16.h b/projects/rccl/src/include/rccl_bfloat16.h index 06b053a626..cd523e0b66 100644 --- a/projects/rccl/src/include/rccl_bfloat16.h +++ b/projects/rccl/src/include/rccl_bfloat16.h @@ -1,7 +1,7 @@ /** * MIT License * - * Copyright 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rccl/src/include/shm.h b/projects/rccl/src/include/shm.h index 5662c01f10..85acdfe3dc 100644 --- a/projects/rccl/src/include/shm.h +++ b/projects/rccl/src/include/shm.h @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/init.cc b/projects/rccl/src/init.cc index 5f724886a9..998d0a13f1 100644 --- a/projects/rccl/src/init.cc +++ b/projects/rccl/src/init.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/misc/argcheck.cc b/projects/rccl/src/misc/argcheck.cc index 03f1a12ec8..2d47e2660c 100644 --- a/projects/rccl/src/misc/argcheck.cc +++ b/projects/rccl/src/misc/argcheck.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/misc/nvmlwrap_stub.cc b/projects/rccl/src/misc/nvmlwrap_stub.cc index d57b9f9dcf..47ea80ca6a 100644 --- a/projects/rccl/src/misc/nvmlwrap_stub.cc +++ b/projects/rccl/src/misc/nvmlwrap_stub.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/misc/utils.cc b/projects/rccl/src/misc/utils.cc index 5c4b9680c1..262974305f 100644 --- a/projects/rccl/src/misc/utils.cc +++ b/projects/rccl/src/misc/utils.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/nccl.h.in b/projects/rccl/src/nccl.h.in index 80f3e98b16..948fd2801d 100644 --- a/projects/rccl/src/nccl.h.in +++ b/projects/rccl/src/nccl.h.in @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/transport.cc b/projects/rccl/src/transport.cc index 18442e28a9..d501021369 100644 --- a/projects/rccl/src/transport.cc +++ b/projects/rccl/src/transport.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/transport/net.cc b/projects/rccl/src/transport/net.cc index 9cba5e114d..6b4aee176a 100644 --- a/projects/rccl/src/transport/net.cc +++ b/projects/rccl/src/transport/net.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/transport/net_ib.cc b/projects/rccl/src/transport/net_ib.cc index d4e05cc552..972dd86712 100644 --- a/projects/rccl/src/transport/net_ib.cc +++ b/projects/rccl/src/transport/net_ib.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/transport/net_socket.cc b/projects/rccl/src/transport/net_socket.cc index 675960013f..d6ca0b50b3 100644 --- a/projects/rccl/src/transport/net_socket.cc +++ b/projects/rccl/src/transport/net_socket.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/src/transport/p2p.cc b/projects/rccl/src/transport/p2p.cc index b5a09c711c..a263408581 100644 --- a/projects/rccl/src/transport/p2p.cc +++ b/projects/rccl/src/transport/p2p.cc @@ -1,6 +1,6 @@ /************************************************************************* * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. - * Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Modifications Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/CMakeLists.txt b/projects/rccl/test/CMakeLists.txt index ee542902b6..547553b2a0 100644 --- a/projects/rccl/test/CMakeLists.txt +++ b/projects/rccl/test/CMakeLists.txt @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. cmake_minimum_required(VERSION 2.8.12) if(BUILD_TESTS) diff --git a/projects/rccl/test/CorrectnessTest.hpp b/projects/rccl/test/CorrectnessTest.hpp index 7440bd5ecc..ba6cb6090c 100644 --- a/projects/rccl/test/CorrectnessTest.hpp +++ b/projects/rccl/test/CorrectnessTest.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_AllGather.cpp b/projects/rccl/test/test_AllGather.cpp index df5aea23e3..c0e92a8ee5 100644 --- a/projects/rccl/test/test_AllGather.cpp +++ b/projects/rccl/test/test_AllGather.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_AllGather.hpp b/projects/rccl/test/test_AllGather.hpp index 3146fbe287..615616f36d 100644 --- a/projects/rccl/test/test_AllGather.hpp +++ b/projects/rccl/test/test_AllGather.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_AllReduce.cpp b/projects/rccl/test/test_AllReduce.cpp index 86d4654b7b..8d17339961 100644 --- a/projects/rccl/test/test_AllReduce.cpp +++ b/projects/rccl/test/test_AllReduce.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_AllReduce.hpp b/projects/rccl/test/test_AllReduce.hpp index a056be95a7..b5d783b4af 100644 --- a/projects/rccl/test/test_AllReduce.hpp +++ b/projects/rccl/test/test_AllReduce.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_AllReduceAbort.cpp b/projects/rccl/test/test_AllReduceAbort.cpp index 719bf323d4..69edb71882 100644 --- a/projects/rccl/test/test_AllReduceAbort.cpp +++ b/projects/rccl/test/test_AllReduceAbort.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_AllReduceAbort.hpp b/projects/rccl/test/test_AllReduceAbort.hpp index f41473b65d..9027289689 100644 --- a/projects/rccl/test/test_AllReduceAbort.hpp +++ b/projects/rccl/test/test_AllReduceAbort.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_Broadcast.cpp b/projects/rccl/test/test_Broadcast.cpp index a98d5884cb..3639ef1c71 100644 --- a/projects/rccl/test/test_Broadcast.cpp +++ b/projects/rccl/test/test_Broadcast.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_Broadcast.hpp b/projects/rccl/test/test_Broadcast.hpp index 358d8cf09a..9ff24ee104 100644 --- a/projects/rccl/test/test_Broadcast.hpp +++ b/projects/rccl/test/test_Broadcast.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_BroadcastAbort.cpp b/projects/rccl/test/test_BroadcastAbort.cpp index df0175002a..feaa09b004 100644 --- a/projects/rccl/test/test_BroadcastAbort.cpp +++ b/projects/rccl/test/test_BroadcastAbort.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_BroadcastAbort.hpp b/projects/rccl/test/test_BroadcastAbort.hpp index c566808389..f8f8230da1 100644 --- a/projects/rccl/test/test_BroadcastAbort.hpp +++ b/projects/rccl/test/test_BroadcastAbort.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_CombinedCalls.cpp b/projects/rccl/test/test_CombinedCalls.cpp index 41e93c78a2..6c17ea6f57 100644 --- a/projects/rccl/test/test_CombinedCalls.cpp +++ b/projects/rccl/test/test_CombinedCalls.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_CombinedCalls.hpp b/projects/rccl/test/test_CombinedCalls.hpp index f09e925757..a19ea7c5df 100644 --- a/projects/rccl/test/test_CombinedCalls.hpp +++ b/projects/rccl/test/test_CombinedCalls.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_GroupCalls.cpp b/projects/rccl/test/test_GroupCalls.cpp index 3cfd55c6f5..365f72067f 100644 --- a/projects/rccl/test/test_GroupCalls.cpp +++ b/projects/rccl/test/test_GroupCalls.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_GroupCalls.hpp b/projects/rccl/test/test_GroupCalls.hpp index 00f84ce6a9..7f595ee62d 100644 --- a/projects/rccl/test/test_GroupCalls.hpp +++ b/projects/rccl/test/test_GroupCalls.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_Reduce.cpp b/projects/rccl/test/test_Reduce.cpp index 8234f2ab05..484e1b02e3 100644 --- a/projects/rccl/test/test_Reduce.cpp +++ b/projects/rccl/test/test_Reduce.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_Reduce.hpp b/projects/rccl/test/test_Reduce.hpp index 0303596560..4ac6dd9486 100644 --- a/projects/rccl/test/test_Reduce.hpp +++ b/projects/rccl/test/test_Reduce.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_ReduceScatter.cpp b/projects/rccl/test/test_ReduceScatter.cpp index f6461f20b8..51e510a403 100644 --- a/projects/rccl/test/test_ReduceScatter.cpp +++ b/projects/rccl/test/test_ReduceScatter.cpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/test/test_ReduceScatter.hpp b/projects/rccl/test/test_ReduceScatter.hpp index 3a7843e2c1..9aff579b13 100644 --- a/projects/rccl/test/test_ReduceScatter.hpp +++ b/projects/rccl/test/test_ReduceScatter.hpp @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved. + * Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ diff --git a/projects/rccl/tools/TransferBench/Makefile b/projects/rccl/tools/TransferBench/Makefile index d22ac47063..61e6f382bd 100644 --- a/projects/rccl/tools/TransferBench/Makefile +++ b/projects/rccl/tools/TransferBench/Makefile @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. HIP_PATH?= $(wildcard /opt/rocm/hip) ifeq (,$(HIP_PATH)) HIP_PATH=../../.. diff --git a/projects/rccl/tools/TransferBench/TransferBench.cpp b/projects/rccl/tools/TransferBench/TransferBench.cpp index 5bdccdf807..1b41413cd3 100644 --- a/projects/rccl/tools/TransferBench/TransferBench.cpp +++ b/projects/rccl/tools/TransferBench/TransferBench.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 - present Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rccl/tools/TransferBench/TransferBench.hpp b/projects/rccl/tools/TransferBench/TransferBench.hpp index 92c596d672..ca09e34b3a 100644 --- a/projects/rccl/tools/TransferBench/TransferBench.hpp +++ b/projects/rccl/tools/TransferBench/TransferBench.hpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 - present Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rccl/tools/rccl-prim-test/Makefile b/projects/rccl/tools/rccl-prim-test/Makefile index 8a65d7db8c..d16cd3003c 100644 --- a/projects/rccl/tools/rccl-prim-test/Makefile +++ b/projects/rccl/tools/rccl-prim-test/Makefile @@ -1,3 +1,4 @@ +# Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. HIP_PATH?= $(wildcard /opt/rocm/hip) ifeq (,$(HIP_PATH)) HIP_PATH=../../.. @@ -13,4 +14,4 @@ $(EXE): rccl_prim_test.cpp $(HIPCC) $(CXXFLAGS) $^ -o $@ clean: - rm -f *.o $(EXE) \ No newline at end of file + rm -f *.o $(EXE) diff --git a/projects/rccl/tools/rccl-prim-test/rccl_prim_test.cpp b/projects/rccl/tools/rccl-prim-test/rccl_prim_test.cpp index 87e1df00e9..6797c3df8d 100644 --- a/projects/rccl/tools/rccl-prim-test/rccl_prim_test.cpp +++ b/projects/rccl/tools/rccl-prim-test/rccl_prim_test.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 - present Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2019-2020 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal