Add Directory Check to Prevent Redundant Cloning in Build Process (#2486)

Update Makefile-fbgemm

Added Directory check for FBGEMM repository cloning.
This commit is contained in:
Vallepu Vamsi Krishna 2024-09-07 16:49:43 +05:30 committed by GitHub
parent c1fe28d694
commit eabbbbda23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
fbgemm_commit := v0.8.0
build-fbgemm:
git clone https://github.com/pytorch/FBGEMM.git fbgemm && \
@if [ ! -d "fbgemm" ]; then \
git clone https://github.com/pytorch/FBGEMM.git fbgemm; \
fi
cd fbgemm && git fetch && git checkout $(fbgemm_commit) && \
git submodule update --init --recursive && \
cd fbgemm_gpu && \