Qwen
Qwen3.6-35B-A3B
Container
Qwen
Qwen3.6-35B-A3B

The Qwen3.6-35B-A3B NIM Container is a deployable inference container for serving Qwen3.6-35B-A3B, a third-party multimodal Mixture of Experts model capable of processing text, image, and video inputs for text generation.

LayerLabelCreated
sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4ENTRYPOINT
["/bin/bash" "/opt/nim/start_server.sh"]
07/31/2026 4:46 PM UTC
sha256:70fa4b0a419c0f74afdd88ccfc1e4554a856c76128245a8507b153978d7f49e2RUN
BASE_IMAGE=nvcr.io/nvstaging/nim/china-vllm-basecontainer-stage3@sha256:a2596c7f08e17c6f91bdafec7fc0c50ee8448bdc32acae998b1dc3828dc74952 TELEMETRY_MODE=0 TELEMETRY_ENDPOINT=0 PIP_INDEX_URL=https://pypi.org/simple MANIFEST_FILE=model_manifest_with_checksum.yaml printf '%s\n' '#!/usr/bin/env bash' 'set -eu' 'export PYTHONPATH="/opt/nim:${PYTHONPATH:-}"' '# NVBug 6434380: NIM_SERVER_PORT must act as the public API port. nimlib' '# get_http_api_port already falls back to it, but other boot-chain' '# components consult NIM_HTTP_API_PORT only — alias it here, before ANY' '# process starts, so every consumer sees one consistent port. An explicit' '# NIM_HTTP_API_PORT still wins.' 'if [ -n "${NIM_SERVER_PORT:-}" ]; then case "${NIM_HTTP_API_PORT:-}" in ""|8000) export NIM_HTTP_API_PORT="$NIM_SERVER_PORT";; esac; fi' '# Video opt-in convention (FFmpeg-free mandate): if the user mounted FFmpeg' '# shared libs at /opt/ffmpeg8, PREPEND them (never replace — CUDA paths must' '# survive) so the torchcodec backend can dlopen them. No env needed by users.' 'if [ -d /opt/ffmpeg8 ]; then export LD_LIBRARY_PATH="/opt/ffmpeg8${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"; fi' '# NVBug 6428290 reopen-1: the serve path prints the startup banner (via nimlib),' '# but arg-driven subcommands exec directly and skip it. Print the banner for' '# list-model-profiles so QA sees the same banner (stdout, before the profile list).' 'if [ "$#" -gt 0 ]; then' '  case "$1" in list-model-profiles) [ -f /opt/nim/banner.txt ] && cat /opt/nim/banner.txt || true;; esac' '  exec "$@"' 'fi' 'exec start_server' > "$SERVER_START_SCRIPT_PATH" &&
  chmod a+rx "$SERVER_START_SCRIPT_PATH"
07/31/2026 4:46 PM UTC
sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4ENV
SERVER_START_SCRIPT_PATH=/opt/nim/start_server.sh
07/31/2026 4:46 PM UTC
sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4EXPOSE
[8000/tcp]
07/31/2026 4:46 PM UTC
sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1RUN
BASE_IMAGE=nvcr.io/nvstaging/nim/china-vllm-basecontainer-stage3@sha256:a2596c7f08e17c6f91bdafec7fc0c50ee8448bdc32acae998b1dc3828dc74952 TELEMETRY_MODE=0 TELEMETRY_ENDPOINT=0 PIP_INDEX_URL=https://pypi.org/simple MANIFEST_FILE=model_manifest_with_checksum.yaml set -eux; for r in fp8-mtp fp8-dflash nvfp4-mtp nvfp4_fast-mtp; do test -f "/opt/nim/$r.yaml"; done; test ! -f /opt/nim/nvfp4-dflash.yaml; test ! -f /opt/nim/nvfp4_fast-dflash.yaml; grep -qx 'max_num_seqs: 1' /opt/nim/nvfp4-mtp.yaml; grep -qx 'gpu_memory_utilization: 0.6' /opt/nim/nvfp4-mtp.yaml; grep -qx 'max_num_seqs: 1' /opt/nim/nvfp4_fast-mtp.yaml; grep -qx 'gpu_memory_utilization: 0.6' /opt/nim/nvfp4_fast-mtp.yaml; python3 -c "import yaml; m=yaml.safe_load(open('/opt/nim/etc/default/model_manifest.yaml')); assert len(m['profiles']) == 4; assert {p['tags']['precision'] + '-' + p['tags']['recipe'] for p in m['profiles']} == {'fp8-mtp', 'fp8-dflash', 'nvfp4-mtp', 'nvfp4_fast-mtp'}"
07/31/2026 4:46 PM UTC
sha256:7c4f505d485669dfe331303fd493efd9ba7f8b1624d3b9ae8730ec42c8228d61COPY
config_files/*.yaml /opt/nim/
07/31/2026 4:46 PM UTC
sha256:9e06944f194a7fe5c13533407d9cfb6b71520eb1485abfdaccfc6bb67dbf2205COPY
model_manifest_with_checksum.yaml /opt/nim/etc/default/model_manifest.yaml
07/31/2026 4:46 PM UTC
sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4ARG
MANIFEST_FILE=model_manifest_with_checksum.yaml
07/31/2026 4:46 PM UTC
sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4USER
nvs:1000
07/31/2026 4:46 PM UTC
sha256:519ef85b860317ac2ab3c730bcc087086f537c4bf6b66866dd1f53b2705f3102RUN
BASE_IMAGE=nvcr.io/nvstaging/nim/china-vllm-basecontainer-stage3@sha256:a2596c7f08e17c6f91bdafec7fc0c50ee8448bdc32acae998b1dc3828dc74952 TELEMETRY_MODE=0 TELEMETRY_ENDPOINT=0 PIP_INDEX_URL=https://pypi.org/simple set -eux; mkdir -p /etc/ld.so.conf.d; touch /etc/ld.so.conf.d/nvidia.conf; for p in /usr/local/nvidia/lib /usr/local/nvidia/lib64 /usr/local/cuda/lib64; do grep -qxF "$p" /etc/ld.so.conf.d/nvidia.conf ||
  echo "$p" >> /etc/ld.so.conf.d/nvidia.conf; done; if command -v ldconfig >/dev/null 2>&1; then ldconfig; fi
07/31/2026 4:46 PM UTC
...

NVIDIA uses cookies to improve your experience on our web site. We and our third-party partners also use cookies and other tools to collect and record information you provide as well as information about your interactions with our websites for performance improvement, analytics, and to assist in marketing efforts. By clicking "Accept All", you consent to our use of cookies and other tools as described in our Cookie Policy. You can manage your cookie settings by clicking on "Manage Settings." By continuing to use this site or by clicking one of the buttons below, you agree to our Terms of Service (which contains important waivers). Please see our Privacy Policy for more information on our privacy practices.