We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98293ec commit 7280271Copy full SHA for 7280271
1 file changed
Dockerfile.sdk
@@ -219,6 +219,11 @@ RUN if [ "$TRITON_ENABLE_GPU" = "ON" ]; then \
219
RUN rm -f /usr/bin/python && \
220
ln -s /usr/bin/python3 /usr/bin/python
221
222
+# Install Model Analyzer
223
+ARG TRITON_MODEL_ANALYZER_REPO_TAG
224
+ARG TRITON_MODEL_ANALYZER_REPO="${TRITON_REPO_ORGANIZATION}/model_analyzer@${TRITON_MODEL_ANALYZER_REPO_TAG}"
225
+RUN pip3 install "git+${TRITON_MODEL_ANALYZER_REPO}"
226
+
227
# Entrypoint Banner
228
ENV NVIDIA_PRODUCT_NAME="Triton Server SDK"
229
COPY docker/entrypoint.d/ /opt/nvidia/entrypoint.d/
0 commit comments