I'm trying to build tensorrt_llm on my Jetson AGX Orin running JetPack 6.0.
During the container build process (tensorrt_llm:r36.3.0-tensorrt_llm), I encountered the following error:
Step 6/9 : COPY ${TRT_LLM_SOURCE} ${SOURCE_TAR}
COPY failed: file not found in build context or excluded by .dockerignore: stat sources/empty.tar.gz: file does not exist
I checked the file jetson-containers/packages/llm/tensorrt_llm/config.py, which shows that the build process invokes the tensorrt_llm function like this: tensorrt_llm('0.5', patch='patches/0.5.diff', requires=['==r36.*', '==cu122'], default=True).
Then, within the tensort_llm function, it assigns src to 'source/empty.tar.gz', but this file seems to be missing from the repository.
Hi,
I'm trying to build tensorrt_llm on my Jetson AGX Orin running JetPack 6.0. During the container build process (
tensorrt_llm:r36.3.0-tensorrt_llm
), I encountered the following error:I checked the file
jetson-containers/packages/llm/tensorrt_llm/config.py
, which shows that the build process invokes thetensorrt_llm
function like this:tensorrt_llm('0.5', patch='patches/0.5.diff', requires=['==r36.*', '==cu122'], default=True)
.Then, within the
tensort_llm
function, it assignssrc
to'source/empty.tar.gz'
, but this file seems to be missing from the repository.Could you please assist in resolving this issue?
Thank you.