Skip to content

Commit 81f32ee

Browse files
committed
fix sources list for nvidia devtools
1 parent 0e8eb80 commit 81f32ee

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/build-gemlite-autotune.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: Build-Gemlite
22

33
on:
44
push:

.github/workflows/build-torchao-float8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: Build-Torchao
22

33
on:
44
push:

.github/workflows/build-torchinductor-cudagraph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: Build-Torchinductor
22

33
on:
44
push:

gemlite_autotune/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2121
# install nsight-systems-cli
2222
RUN apt-get update && \
2323
apt-get install -y --no-install-recommends gnupg && \
24-
echo "http://developer.download.nvidia.com/devtools/repos/ubuntu2204/amd64/" | tee /etc/apt/sources.list.d/nvidia-devtools.list && \
24+
echo "deb http://developer.download.nvidia.com/devtools/repos/ubuntu2204/amd64/ /" | tee /etc/apt/sources.list.d/nvidia-devtools.list && \
2525
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub && \
2626
apt-get update && \
2727
apt-get install -y --no-install-recommends nsight-systems-cli && \
@@ -49,8 +49,8 @@ RUN sh /uv-installer.sh && rm /uv-installer.sh
4949
ENV PATH="/root/.local/bin/:$PATH"
5050

5151
# Accept build arguments for git repo and commit
52-
ARG GIT_REPO
53-
ARG GIT_COMMIT
52+
ARG GIT_REPO=https://github.com/vipulSharma18/Inference-Profiling-and-Optimization-Worklog.git
53+
ARG GIT_COMMIT="HEAD"
5454

5555
# Set working directory
5656
WORKDIR /workspace

torchao_float8/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2121
# install nsight-systems-cli
2222
RUN apt-get update && \
2323
apt-get install -y --no-install-recommends gnupg && \
24-
echo "http://developer.download.nvidia.com/devtools/repos/ubuntu2204/amd64/" | tee /etc/apt/sources.list.d/nvidia-devtools.list && \
24+
echo "deb http://developer.download.nvidia.com/devtools/repos/ubuntu2204/amd64/ /" | tee /etc/apt/sources.list.d/nvidia-devtools.list && \
2525
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub && \
2626
apt-get update && \
2727
apt-get install -y --no-install-recommends nsight-systems-cli && \
@@ -49,8 +49,8 @@ RUN sh /uv-installer.sh && rm /uv-installer.sh
4949
ENV PATH="/root/.local/bin/:$PATH"
5050

5151
# Accept build arguments for git repo and commit
52-
ARG GIT_REPO
53-
ARG GIT_COMMIT
52+
ARG GIT_REPO=https://github.com/vipulSharma18/Inference-Profiling-and-Optimization-Worklog.git
53+
ARG GIT_COMMIT="HEAD"
5454

5555
# Set working directory
5656
WORKDIR /workspace

torchinductor_cudagraph_memory/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2121
# install nsight-systems-cli
2222
RUN apt-get update && \
2323
apt-get install -y --no-install-recommends gnupg && \
24-
echo "http://developer.download.nvidia.com/devtools/repos/ubuntu2204/amd64/" | tee /etc/apt/sources.list.d/nvidia-devtools.list && \
24+
echo "deb http://developer.download.nvidia.com/devtools/repos/ubuntu2204/amd64/ /" | tee /etc/apt/sources.list.d/nvidia-devtools.list && \
2525
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub && \
2626
apt-get update && \
2727
apt-get install -y --no-install-recommends nsight-systems-cli && \
@@ -49,8 +49,8 @@ RUN sh /uv-installer.sh && rm /uv-installer.sh
4949
ENV PATH="/root/.local/bin/:$PATH"
5050

5151
# Accept build arguments for git repo and commit
52-
ARG GIT_REPO
53-
ARG GIT_COMMIT
52+
ARG GIT_REPO=https://github.com/vipulSharma18/Inference-Profiling-and-Optimization-Worklog.git
53+
ARG GIT_COMMIT="HEAD"
5454

5555
# Set working directory
5656
WORKDIR /workspace

0 commit comments

Comments
 (0)