Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ conda update -n monarchenv --all -c conda-forge -y
sudo dnf install -y libibverbs rdma-core libmlx5 libibverbs-devel rdma-core-devel

# Install build dependencies
pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu128
pip install -r build-requirements.txt
pip install -r torch-requirements.txt -r build-requirements.txt
# Install test dependencies
pip install -r python/tests/requirements.txt

Expand Down Expand Up @@ -142,8 +141,7 @@ export CXX=clang++
sudo apt install -y cuda-toolkit-12-8 cuda-12-8

# Install build dependencies
pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu128
pip install -r build-requirements.txt
pip install -r torch-requirements.txt -r build-requirements.txt
# Install test dependencies
pip install -r python/tests/requirements.txt

Expand Down
1 change: 0 additions & 1 deletion build-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
torch
setuptools
setuptools-rust
wheel
Expand Down
2 changes: 2 additions & 0 deletions torch-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--index-url https://download.pytorch.org/whl/nightly/cu128
torch --pre
Loading