From 5a505aadb3a178780b18b7bdce87145e38b21677 Mon Sep 17 00:00:00 2001 From: AlexHe99 Date: Wed, 3 Sep 2025 09:56:14 +0800 Subject: [PATCH 1/2] Update README.md with installation for AMD ROCm GPU. Add the steps of the installation for AMD ROCm GPU. --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 72928dd5..85baa13b 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,21 @@ source env/bin/activate python -m pip install -e .\[inference\] ``` +For the AMD ROCm GPU, you could follow the instruction from [Pytorch.org](https://pytorch.org/) to install the ROCm version of PyTorch. That will let you run LTX-Video with AMD Instince and Radeon GPU. +Just one line to install it before installing other dependency libs. + +```bash +git clone https://github.com/Lightricks/LTX-Video.git +cd LTX-Video + +# create env +python -m venv env +source env/bin/activate +pip3 install torch torchvision --index-url https://download.pytorch.org/whl/rocm6.4 # Update to the lastes version as required +python -m pip install -e .\[inference\] +``` + + #### FP8 Kernels (optional) [FP8 kernels](https://github.com/Lightricks/LTXVideo-Q8-Kernels) developed for LTX-Video provide performance boost on supported graphics cards (Ada architecture and later). To install FP8 kernels, follow the instructions in that repository. From cb2965654b367b15a755dc23966f2ac6f5653186 Mon Sep 17 00:00:00 2001 From: joshua27200 Date: Thu, 25 Dec 2025 02:23:39 +1100 Subject: [PATCH 2/2] Create settings.json --- .vscode/settings.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..3e99ede3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "." + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file