Multi-Accelerator Support for AIMs and AMD Solution Blueprints AMD released version 2.2 of its enterprise AI reference stack, introducing multi-accelerator support for AMD Inference Microservices (AIMs) and AMD Solution Blueprints across AMD Instinct GPUs (MI300X, MI325X, MI350X, MI355X), AMD Radeon Pro GPUs (W7900, R9700), and AMD EPYC CPUs (EPYC 9965). The update expands AIMs and Solution Blueprints, including a Document Summarization Blueprint that runs on all three accelerator types, with default models Llama 3.3 70B Instruct on Instinct, Qwen3-VL 8B Instruct on Radeon, and Llama 3.1 8B Instruct on EPYC. Multi-Accelerator Support for AIMs and AMD Solution Blueprints multi-accelerator-support-for-aims-and-amd-solution-blueprints With the latest release of AMD enterprise AI reference stack, Version 2.2 Release notes https://enterprise-ai.docs.amd.com/en/latest/release-notes.html , we’re now introducing Multi-accelerator support . AMD Inference Microservices AIMs https://enterprise-ai.docs.amd.com/en/latest/aims/overview.html now run across AMD Instinct™ GPUs MI300X, MI325X, MI350X, MI355X , AMD Radeon™ Pro GPUs W7900 and R9700 , and AMD EPYC™ CPUs EPYC 9965 . That same coverage also extends to the AMD Solution Blueprints https://enterprise-ai.docs.amd.com/en/latest/solution-blueprints/catalog.html . This blog introduces: The new AIMs for AMD Instinct™ GPUs , AMD EPYC™ Server Processors , and AMD Radeon™ GPUs The expanded AMD Solution Blueprint support for AMD EPYC and AMD Radeon In addition, we will walk you through the Document Summarization Solution Blueprint https://enterprise-ai.docs.amd.com/en/latest/solution-blueprints/catalog.html across all three accelerator types. AMD Inference Microservices amd-inference-microservices AIMs provide standardized, portable inference microservices for serving AI models on AMD hardware. Distributed as Docker images, AIMs abstract away the complexities involved in model serving through an intelligent orchestration layer that automatically configures runtime environments, detects available accelerators, and selects a performance profile. The following AIMs are new in this release. For the complete list of supported models per accelerator, see the accelerator support page https://enterprise-ai.docs.amd.com/en/latest/aims/accelerator support.html . The source code is also publicly available in the AIM build repository https://github.com/amd-enterprise-ai/aim-build/tree/main . AMD Solution Blueprints amd-solution-blueprints AMD Solution Blueprints https://enterprise-ai.docs.amd.com/en/latest/solution-blueprints/catalog.html are reference applications built with AIMs. They offer an easy way to explore AIMs in the context of a complete microservice solution, such as document summarization, RAG chatbots, AI coding assistants, and agentic workflows. For developers, Solution Blueprints act as starting points and example implementations, making it fast and easy to solve real-world needs with ROCm™ software. Browse the full set of AMD Solution Blueprints, including per-accelerator support, in the Solution Blueprint catalog https://enterprise-ai.docs.amd.com/en/latest/solution-blueprints/catalog.html . AMD Solution Blueprints are packaged as Helm charts https://helm.sh/ for deployment on a Kubernetes cluster. For development or further exploration, the source code is publicly available in the Solution Blueprints GitHub repository https://github.com/amd-enterprise-ai/solution-blueprints/tree/main/solution-blueprints/document-summarization . In this blog we deploy the Document Summarization Solution Blueprint https://enterprise-ai.docs.amd.com/en/latest/solution-blueprints/document-summarization/README.html which supports all three accelerators. Document Summarization Solution Blueprint document-summarization-solution-blueprint The Document Summarization DocSum Solution Blueprint uses LLMs to generate summaries from varied document types. It can process and summarize PDFs, DOCX files, and plain text, as well as multimedia files both audio and video , across a variety of domains such as customer service, scientific research, and legal text. Figure 1 shows the architecture. Figure 1: Document Summarization Architecture. The Solution Blueprint deploys the following AIM by default: Instinct: Llama 3.3 70B Instruct Radeon: Qwen3-VL 8B Instruct EPYC: Llama 3.1 8B Instruct Prerequisites prerequisites To deploy to the Kubernetes cluster, ensure the following prerequisites are met: kubectl https://kubernetes.io/docs/tasks/tools/ : Installed and configured to communicate with the cluster Helm https://helm.sh/docs/intro/install/ : Installed on your local machineKubernetes namespace: We will use a namespace called demo You can create a namespace using kubectl create namespace "demo" . This blog post was validated on clusters powered by AMD Instinct MI300X GPUs, AMD EPYC™ 9965 CPUs and AMD Radeon AI PRO R9700S GPUs and with AMD AI Workbench https://enterprise-ai.docs.amd.com/en/latest/workbench/overview.html installed. Hugging Face Token hugging-face-token AIM images are hosted publicly on Docker Hub and do not require authentication to pull. However, certain models are gated on Hugging Face and require an access token to download. Store your token as a Kubernetes secret so it can be referenced securely by the deployment. Create a secret for the demo namespace: kubectl create secret generic hf-token \ --from-literal="hf-token=YOUR HUGGINGFACE TOKEN" \ -n demo secret/hf-token created Deployment deployment AMD Solution Blueprints are packaged as OCI-compliant Helm charts in the Docker Hub registry and can be deployed to a Kubernetes cluster with a single command. Define the name deployment name and the namespace Kubernetes namespace , then pipe the output of helm template to kubectl apply -f - . The chart ships defaults for three platforms, selected with --set global.platform=