Skip to content
Open
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
3 changes: 2 additions & 1 deletion cpu-bench/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN apt-get update \
# --break-system-packages is needed because Ubuntu 24.04+ marks system Python as
# externally managed (PEP 668). Safe here since this is a container.
RUN pip3 install --no-cache-dir --break-system-packages \
torch --index-url https://download.pytorch.org/whl/cpu
torch --index-url https://download.pytorch.org/whl/cpu \
&& pip3 install --no-cache-dir --break-system-packages gpytorch

# Use pppm
COPY .Rprofile /usr/local/lib/R/etc/Rprofile.site
Expand Down
3 changes: 2 additions & 1 deletion cuda-bench/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN apt-get update \
# --break-system-packages is needed because Ubuntu 24.04+ marks system Python as
# externally managed (PEP 668). Safe here since this is a container.
RUN pip3 install --no-cache-dir --break-system-packages \
torch --index-url https://download.pytorch.org/whl/cu124
torch --index-url https://download.pytorch.org/whl/cu124 \
&& pip3 install --no-cache-dir --break-system-packages gpytorch

# Use pppm
COPY .Rprofile /usr/local/lib/R/etc/Rprofile.site
Expand Down
Loading