Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP, CI] Upgrade cuda channel #1019

Merged
merged 1 commit into from
Apr 3, 2023
Merged
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
amend
  • Loading branch information
vmoens committed Apr 3, 2023
commit bb32ce2fa7f2468a914a625dd29146c40cd3ad5e
2 changes: 1 addition & 1 deletion .circleci/unittest/linux_examples/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ printf "Installing PyTorch with %s\n" "${CU_VERSION}"
if [ "${CU_VERSION:-}" == cpu ] ; then
pip3 install --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/nightly/cpu
else
pip3 install --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/nightly/cu113
pip3 install --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/nightly/cu118
fi

# smoke test
Expand Down
2 changes: 1 addition & 1 deletion .circleci/unittest/linux_libs/scripts_envpool/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ printf "Installing PyTorch with %s\n" "${CU_VERSION}"
if [ "${CU_VERSION:-}" == cpu ] ; then
pip3 install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cpu
else
pip3 install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cu113
pip3 install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cu118
fi

# smoke test
Expand Down
2 changes: 1 addition & 1 deletion .circleci/unittest/linux_optdeps/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ "${CU_VERSION:-}" == cpu ] ; then
# conda install -y pytorch cpuonly -c pytorch-nightly
pip3 install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cpu
else
pip3 install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cu113
pip3 install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cu118
fi

# install tensordict
Expand Down
2 changes: 1 addition & 1 deletion .circleci/unittest/linux_stable/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ printf "Installing PyTorch with %s\n" "${CU_VERSION}"
if [ "${CU_VERSION:-}" == cpu ] ; then
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu
else
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu118
fi

# install tensordict
Expand Down