Skip to content

Commit

Permalink
Fix xformers
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleykleynhans committed Mar 13, 2024
1 parent 69a18ee commit a1002a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WORKDIR /
RUN python3 -m venv /venv && \
source /venv/bin/activate && \
pip3 install torch==${TORCH_VERSION} --index-url ${INDEX_URL} && \
pip3 install xformers==${XFORMERS_VERSION} --index-url ${INDEX_URL} && \
pip3 install xformers==${XFORMERS_VERSION} && \
deactivate

# Clone the git repo of Text Generation Web UI and set version
Expand Down
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ target "default" {
RELEASE = "${RELEASE}"
INDEX_URL = "https://download.pytorch.org/whl/cu${CU_VERSION}"
TORCH_VERSION = "2.2.0+cu${CU_VERSION}"
XFORMERS_VERSION = "0.0.24+cu${CU_VERSION}"
XFORMERS_VERSION = "0.0.24"
OOBABOOGA_COMMIT = "1934cb61ef879815644277c01c7295acbae542d8"
RUNPODCTL_VERSION = "v1.14.2"
VENV_PATH = "/workspace/venvs/text-generation-webuii"
Expand Down

0 comments on commit a1002a6

Please sign in to comment.