From 37220ab90a549ec39e1cea3224aaae99790af2e4 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Sat, 17 May 2025 08:26:31 -0400 Subject: [PATCH] install pybind11 for fa3 build --- docker/Dockerfile-base | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile-base b/docker/Dockerfile-base index c08b7bee2..e29e9da12 100644 --- a/docker/Dockerfile-base +++ b/docker/Dockerfile-base @@ -39,6 +39,7 @@ RUN git lfs install --skip-repo && \ pip3 install -U --no-cache-dir pydantic==1.10.10 RUN if [ "$TORCH_CUDA_ARCH_LIST" = "9.0+PTX" ] ; then \ + pip install "pybind11[global]"; \ git clone https://github.com/Dao-AILab/flash-attention.git; \ cd flash-attention; \ git checkout v2.7.4.post1; \