├── .github ├── CODEOWNERS └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .jenkins ├── common.groovy └── staticanalysis.groovy ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile ├── NOTICES.txt ├── README.md ├── cmake ├── CheckSymbolExistsNoWarn.cmake └── Dependencies.cmake ├── doc └── PERFORMANCE.md ├── docker ├── dockerfile-build-centos ├── dockerfile-build-ubuntu-rock ├── dockerfile-install-centos └── dockerfile-install-ubuntu ├── install.sh ├── src ├── CMakeLists.txt ├── Makefile ├── all_gather.cu ├── all_reduce.cu ├── all_reduce_bias.cu ├── alltoall.cu ├── alltoallv.cu ├── broadcast.cu ├── cmake │ └── git_version.cmake ├── common.cu ├── common.h ├── common.mk ├── gather.cu ├── git_version.h ├── hypercube.cu ├── nccl1_compat.h ├── rccl_compat.h ├── rccl_float8.h ├── reduce.cu ├── reduce_scatter.cu ├── scatter.cu ├── sendrecv.cu ├── timer.cc └── timer.h ├── test ├── __init__.py ├── conftest.py ├── test_AllGather.py ├── test_AllReduce.py ├── test_Broadcast.py ├── test_Reduce.py └── test_ReduceScatter.py ├── toolchain-linux.cmake └── verifiable ├── Makefile ├── inexact_regress.cu ├── main.cu ├── verifiable.cu ├── verifiable.h └── verifiable.mk /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkins/common.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/.jenkins/common.groovy -------------------------------------------------------------------------------- /.jenkins/staticanalysis.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/.jenkins/staticanalysis.groovy -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/NOTICES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CheckSymbolExistsNoWarn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/cmake/CheckSymbolExistsNoWarn.cmake -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /doc/PERFORMANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/doc/PERFORMANCE.md -------------------------------------------------------------------------------- /docker/dockerfile-build-centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/docker/dockerfile-build-centos -------------------------------------------------------------------------------- /docker/dockerfile-build-ubuntu-rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/docker/dockerfile-build-ubuntu-rock -------------------------------------------------------------------------------- /docker/dockerfile-install-centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/docker/dockerfile-install-centos -------------------------------------------------------------------------------- /docker/dockerfile-install-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/docker/dockerfile-install-ubuntu -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/install.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/all_gather.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/all_gather.cu -------------------------------------------------------------------------------- /src/all_reduce.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/all_reduce.cu -------------------------------------------------------------------------------- /src/all_reduce_bias.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/all_reduce_bias.cu -------------------------------------------------------------------------------- /src/alltoall.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/alltoall.cu -------------------------------------------------------------------------------- /src/alltoallv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/alltoallv.cu -------------------------------------------------------------------------------- /src/broadcast.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/broadcast.cu -------------------------------------------------------------------------------- /src/cmake/git_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/cmake/git_version.cmake -------------------------------------------------------------------------------- /src/common.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/common.cu -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/common.h -------------------------------------------------------------------------------- /src/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/common.mk -------------------------------------------------------------------------------- /src/gather.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/gather.cu -------------------------------------------------------------------------------- /src/git_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/git_version.h -------------------------------------------------------------------------------- /src/hypercube.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/hypercube.cu -------------------------------------------------------------------------------- /src/nccl1_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/nccl1_compat.h -------------------------------------------------------------------------------- /src/rccl_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/rccl_compat.h -------------------------------------------------------------------------------- /src/rccl_float8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/rccl_float8.h -------------------------------------------------------------------------------- /src/reduce.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/reduce.cu -------------------------------------------------------------------------------- /src/reduce_scatter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/reduce_scatter.cu -------------------------------------------------------------------------------- /src/scatter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/scatter.cu -------------------------------------------------------------------------------- /src/sendrecv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/sendrecv.cu -------------------------------------------------------------------------------- /src/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/timer.cc -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/src/timer.h -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_AllGather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/test_AllGather.py -------------------------------------------------------------------------------- /test/test_AllReduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/test_AllReduce.py -------------------------------------------------------------------------------- /test/test_Broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/test_Broadcast.py -------------------------------------------------------------------------------- /test/test_Reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/test_Reduce.py -------------------------------------------------------------------------------- /test/test_ReduceScatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/test/test_ReduceScatter.py -------------------------------------------------------------------------------- /toolchain-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/toolchain-linux.cmake -------------------------------------------------------------------------------- /verifiable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/verifiable/Makefile -------------------------------------------------------------------------------- /verifiable/inexact_regress.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/verifiable/inexact_regress.cu -------------------------------------------------------------------------------- /verifiable/main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/verifiable/main.cu -------------------------------------------------------------------------------- /verifiable/verifiable.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/verifiable/verifiable.cu -------------------------------------------------------------------------------- /verifiable/verifiable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/verifiable/verifiable.h -------------------------------------------------------------------------------- /verifiable/verifiable.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/rccl-tests/HEAD/verifiable/verifiable.mk --------------------------------------------------------------------------------