From d14c4dacd71e0642a76078613e203ce628e684b6 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Thu, 26 Mar 2026 21:34:57 -0700 Subject: [PATCH] fix AITER docker setup (#5891) ## Motivation Add a new python package required to build AITER. ## Technical Details ## Test Plan ## Test Result ## Submission Checklist - [ ] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. --- Dockerfile.aiter | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.aiter b/Dockerfile.aiter index a5a3f81fca..ebfef41643 100644 --- a/Dockerfile.aiter +++ b/Dockerfile.aiter @@ -4,7 +4,7 @@ ARG AITER_BRANCH="main" ARG CK_AITER_BRANCH="develop" # CK_FROM_ROCM_LIBRARIES - 1: CK from rocm-libraries sparse-checkout; 0: direct clone from ROCm/composable_kernel ARG CK_FROM_ROCM_LIBRARIES=1 -RUN pip install pandas zmq einops ninja tabulate && \ +RUN pip install pandas zmq einops ninja tabulate vcs_versioning && \ pip install numpy==1.26.2 && \ sudo mkdir /home/jenkins && \ sudo mkdir /home/jenkins/workspace && \