forked from mrq/ai-voice-cloning
8 lines
263 B
Bash
8 lines
263 B
Bash
|
#!/bin/bash
|
||
|
source ./venv/bin/activate
|
||
|
git clone https://git.ecker.tech/mrq/bitsandbytes-rocm
|
||
|
cd bitsandbytes-rocm
|
||
|
make hip
|
||
|
CUDA_VERSION=gfx1030 python setup.py install # assumes you're using a 6XXX series card
|
||
|
python3 -m bitsandbytes # to validate it works
|
||
|
cd ..
|