Skip to content

Commit

Permalink
Merge branch 'mps' of https://github.com/maximegmd/axolotl into mps
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegmd committed Feb 7, 2024
2 parents 73e72db + 980e7aa commit cd829e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:

- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install packaging
pip3 install -U -e .
pip3 install -r requirements-tests.txt
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ RUN git clone --depth=1 https://github.com/OpenAccess-AI-Collective/axolotl.git

WORKDIR /workspace/axolotl

RUN pip install packaging
RUN pip install --upgrade pip && \
pip install packaging

# If AXOLOTL_EXTRAS is set, append it in brackets
RUN if [ "$AXOLOTL_EXTRAS" != "" ] ; then \
Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile-tests
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ WORKDIR /workspace/axolotl
RUN git fetch origin +$GITHUB_REF && \
git checkout FETCH_HEAD

RUN pip install --upgrade pip && \
pip install packaging \

# If AXOLOTL_EXTRAS is set, append it in brackets
RUN if [ "$AXOLOTL_EXTRAS" != "" ] ; then \
pip install -e .[deepspeed,flash-attn,mamba-ssm,$AXOLOTL_EXTRAS]; \
Expand Down

0 comments on commit cd829e8

Please sign in to comment.