Skip to content

Commit 764a6b0

Browse files
authored
Merge branch 'main' into main
2 parents 0fa55ee + 2706020 commit 764a6b0

4 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/build-and-publish.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@v4
38+
- name: "Free up disk space"
39+
uses: ./.github/actions/free-up-disk-space
3840
- name: Set up Python ${{ matrix.python-version.setup }}
3941
uses: actions/setup-python@v4
4042
with:

.github/workflows/coverage.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13+
- name: "Free up disk space"
14+
uses: ./.github/actions/free-up-disk-space
1315
- name: Set up Python 3.12
1416
uses: actions/setup-python@v4
1517
with:

.github/workflows/format.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v4
28+
- name: "Free up disk space"
29+
uses: ./.github/actions/free-up-disk-space
2830
- name: Set up Python 3.12
2931
uses: actions/setup-python@v4
3032
with:

build/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,10 @@ ENV PIP_NO_BINARY=mamba-ssm,mamba_ssm
156156
RUN --mount=type=cache,target=/home/${USER}/.cache/pip,uid=${USER_UID} \
157157
python -m pip install --user wheel && \
158158
python -m pip install --user "$(head bdist_name)" && \
159-
python -m pip install --user "$(head bdist_name)[flash-attn]" && \
160159
python -m pip install --user --no-build-isolation "$(head bdist_name)[mamba]"
161160

161+
RUN python -m pip install --user --no-build-isolation "$(head bdist_name)[flash-attn]"
162+
162163
# fms_acceleration_peft = PEFT-training, e.g., 4bit QLoRA
163164
# fms_acceleration_foak = Fused LoRA and triton kernels
164165
# fms_acceleration_aadp = Padding-Free Flash Attention Computation

0 commit comments

Comments
 (0)