woks in AMD 6600 + Rocm 5.7.1 #739
DepressedProgrammer
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, i managed to get TorToise working on my 6600 (no xt, sadly) in Debian 12 using Rocm 5.7.1
following both this discussion and this issue:
#670
#366
Important:
Because i use Debian 12, first thing i did was to change global python version to 3.10.9 with pyenv as python 3.11 is not supported by Rocm, then added amdgpu-install repo to install rocm:
https://blog.moubou.com/2023/11/install-amd-rocm-on-debian-bookworm/
i was too lazy to use docker, so venv instead.
Also important:
for some reason my pip kept pulling "torchaudio-2.2.1-cp310-cp310-manylinux1_x86_64.whl" and "torch-2.2.1-cp310-cp310-manylinux1_x86_64.whl". With these wheels tortoise doesn't recognize the gpu , uses cpu instead and throws
i manually downloaded torch and torch audio from https://download.pytorch.org/whl/rocm5.2 to my tortoise folder and added them to requirements.txt
download these two:
torch-2.2.0+rocm5.7-cp310-cp310-linux_x86_64.whl
torchaudio-2.2.0+rocm5.7-cp310-cp310-linux_x86_64.whl
I'll probably upload these files to a github repo and link the release in my requirements for pip to use with docker in the future
newer versions of rotary_embedding_torch threw incompatible version error with einops 0.4.1, downgraded versions until 0.2.6 which seemed to work
Requirements.txt:
Capiton:
PC stuff:
added on top of do_tts to quickly verify if it uses gpu
Beta Was this translation helpful? Give feedback.
All reactions