File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
torchinductor_cudagraph_memory Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ ARG GIT_COMMIT="main"
5656WORKDIR /workspace
5757
5858# Clone the repository with sparse-checkout
59- RUN git clone --no-checkout ${GIT_REPO} /workspace && \
59+ RUN GIT_LFS_SKIP_SMUDGE=1 git clone --no-checkout ${GIT_REPO} /workspace && \
6060 cd /workspace && \
6161 git sparse-checkout init --cone && \
6262 git sparse-checkout set gemlite_autotune common_utils && \
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ ARG GIT_COMMIT="HEAD"
5555# Set working directory
5656WORKDIR /workspace
5757
58- # Clone the repository with sparse-checkout
59- RUN git clone --no-checkout ${GIT_REPO} /workspace && \
58+ # Clone the repository with sparse-checkout (skip LFS files)
59+ RUN GIT_LFS_SKIP_SMUDGE=1 git clone --no-checkout ${GIT_REPO} /workspace && \
6060 cd /workspace && \
6161 git sparse-checkout init --cone && \
6262 git sparse-checkout set torchao_float8 common_utils && \
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ ARG GIT_COMMIT="main"
5656WORKDIR /workspace
5757
5858# Clone the repository with sparse-checkout
59- RUN git clone --no-checkout ${GIT_REPO} /workspace && \
59+ RUN GIT_LFS_SKIP_SMUDGE=1 git clone --no-checkout ${GIT_REPO} /workspace && \
6060 cd /workspace && \
6161 git sparse-checkout init --cone && \
6262 git sparse-checkout set torchinductor_cudagraph_memory common_utils && \
You can’t perform that action at this time.
0 commit comments