Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 1.95 KB

rocm.md

File metadata and controls

55 lines (46 loc) · 1.95 KB

+++ title = "AMD ROCm" +++

AMD ROCm

<p>
  <a href="https://amdgpu.juliagpu.org/stable/">
    <img src="https://img.shields.io/badge/docs-stable-blue.svg" alt>
  </a>
  <a href="https://github.com/JuliaGPU/AMDGPU.jl">
    <img src="https://img.shields.io/github/stars/JuliaGPU/AMDGPU.jl?style=social" alt>
  </a>
</p>

The Julia programming support for AMD GPUs based on the ROCm platform aims to provide similar capabilities as the NVIDIA CUDA stack, with support for both low-level kernel programming as well as an array-oriented interface. AMDGPU.jl offers comparable performance as HIP C++. The toolchain can easily be installed on latest version of Julia using the integrated package manager.

AMDGPU.jl makes it possible to program AMD GPUs at different abstraction levels:

  • by using the ROCArray type, providing a user-friendly yet powerful abstraction that does not require any GPU programming experience;
  • by writing ROC kernels, with similar performance as kernels written in HIP C++;
  • by interfacing with HIP APIs and libraries directly, similar level of flexibility you would expect from a C-based programming environment.

The documentation of AMDGPU.jl demonstrates each of these approaches.

Performance

Julia on the CPU is known for its good performance, approaching that of statically compiled languages like C. The same holds for programming AMD GPUs with kernels written using AMDGPU.jl, where we show preliminary performance to approach that of HIP C++ on a memcopy and 2D diffusion kernel:

<div class="card mb-3">
  <a href="/assets/img/amdgpu-performance.png">
    <img src="/assets/img/amdgpu-performance.png" class=card-img-top alt>
  </a>
  <div class=card-body>
    <p class=card-text>
      Preliminary performance of a memcopy and 2D diffusion kernel implemented in
      Julia with AMDGPU.jl and executed on a MI250x GPU.
    </p>
  </div>
</div>