├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md └── images ├── openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04 └── release-notes.md ├── openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04 └── release-notes.md ├── openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04 └── release-notes.md ├── openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04 └── release-notes.md ├── openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04 └── release-notes.md ├── openmpi4.1.0-ubuntu20.04 └── release-notes.md ├── openmpi4.1.0-ubuntu22.04 └── release-notes.md ├── openmpi5.0-cuda12.4-ubuntu22.04 └── release-notes.md ├── openmpi5.0-cuda12.5-ubuntu22.04 └── release-notes.md ├── openmpi5.0-cuda12.6-ubuntu24.04 └── release-notes.md └── openmpi5.0-ubuntu24.04 └── release-notes.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-ubuntu20.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-ubuntu20.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi4.1.0-ubuntu22.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi4.1.0-ubuntu22.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi5.0-cuda12.4-ubuntu22.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi5.0-cuda12.4-ubuntu22.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi5.0-cuda12.5-ubuntu22.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi5.0-cuda12.5-ubuntu22.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi5.0-cuda12.6-ubuntu24.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi5.0-cuda12.6-ubuntu24.04/release-notes.md -------------------------------------------------------------------------------- /images/openmpi5.0-ubuntu24.04/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureML-Containers/HEAD/images/openmpi5.0-ubuntu24.04/release-notes.md --------------------------------------------------------------------------------