run.sh 7.17 KB
Newer Older
Carsten Csiky's avatar
Carsten Csiky committed
1
#!/usr/bin/env bash
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Carsten Csiky's avatar
Carsten Csiky committed
17
18
set -e

19
20
21
22
23
24
25
26
RUN_PREFIX=

# Frameworks
#
# Each framework has a corresponding base image.  Additional
# dependencies are specified in the /container/deps folder and
# installed within framework specific sections of the Dockerfile.

27
declare -A FRAMEWORKS=(["VLLM"]=1 ["TENSORRTLLM"]=2 ["SGLANG"]=3)
28
DEFAULT_FRAMEWORK=VLLM
29
30
31
32
33
34
35
36
37
38
39
40
41

SOURCE_DIR=$(dirname "$(readlink -f "$0")")

IMAGE=
HF_CACHE=
DEFAULT_HF_CACHE=${SOURCE_DIR}/.cache/huggingface
GPUS="all"
PRIVILEGED=
VOLUME_MOUNTS=
MOUNT_WORKSPACE=
ENVIRONMENT_VARIABLES=
REMAINING_ARGS=
INTERACTIVE=
42
USE_NIXL_GDS=
43
44
45
46
47
48
49
50
51
52
53
54
55

get_options() {
    while :; do
        case $1 in
        -h | -\? | --help)
            show_help
            exit
            ;;
	--framework)
            if [ "$2" ]; then
                FRAMEWORK=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
56
		missing_requirement "$1"
57
58
59
60
61
62
63
            fi
            ;;
        --image)
            if [ "$2" ]; then
                IMAGE=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
64
		missing_requirement "$1"
65
66
            fi
            ;;
67
68
69
70
71
        --target)
            if [ "$2" ]; then
                TARGET=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
72
                missing_requirement "$1"
73
74
            fi
            ;;
75
76
77
78
79
	--name)
            if [ "$2" ]; then
                NAME=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
80
		missing_requirement "$1"
81
82
83
84
85
86
87
            fi
            ;;
	--hf-cache)
            if [ "$2" ]; then
                HF_CACHE=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
88
		missing_requirement "$1"
89
90
91
92
93
94
95
96
            fi
            ;;

	--gpus)
            if [ "$2" ]; then
                GPUS=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
97
		missing_requirement "$1"
98
99
            fi
            ;;
100
	--entrypoint)
101
            if [ "$2" ]; then
102
                ENTRYPOINT=$2
103
104
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
105
		missing_requirement "$1"
106
107
108
109
110
111
112
            fi
            ;;
	--privileged)
            if [ "$2" ]; then
                PRIVILEGED=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
113
		missing_requirement "$1"
114
115
            fi
            ;;
116
117
118
119
120
	--rm)
            if [ "$2" ]; then
                RM=$2
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
121
		missing_requirement "$1"
122
123
            fi
            ;;
124
125
126
127
128
	-v)
            if [ "$2" ]; then
                VOLUME_MOUNTS+=" -v $2 "
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
129
		missing_requirement "$1"
130
131
132
133
134
135
136
            fi
            ;;
	-e)
            if [ "$2" ]; then
                ENVIRONMENT_VARIABLES+=" -e $2 "
                shift
            else
Carsten Csiky's avatar
Carsten Csiky committed
137
		missing_requirement "$1"
138
139
140
141
142
143
144
145
            fi
            ;;
	-it)
	    INTERACTIVE=" -it "
	    ;;
	--mount-workspace)
	    MOUNT_WORKSPACE=TRUE
	    ;;
146
147
148
        --use-nixl-gds)
            USE_NIXL_GDS=TRUE
            ;;
149
150
151
152
153
154
155
156
157
158
159
160
161
        --dry-run)
            RUN_PREFIX="echo"
            echo ""
            echo "=============================="
            echo "DRY RUN: COMMANDS PRINTED ONLY"
            echo "=============================="
            echo ""
            ;;
        --)
            shift
            break
            ;;
         -?*)
Carsten Csiky's avatar
Carsten Csiky committed
162
	    error 'ERROR: Unknown option: ' "$1"
163
164
            ;;
	 ?*)
Carsten Csiky's avatar
Carsten Csiky committed
165
	    error 'ERROR: Unknown option: ' "$1"
166
167
168
169
170
171
172
173
174
175
176
177
178
            ;;
        *)
            break
            ;;
        esac

        shift
    done

    if [ -z "$FRAMEWORK" ]; then
	FRAMEWORK=$DEFAULT_FRAMEWORK
    fi

Carsten Csiky's avatar
Carsten Csiky committed
179
    if [ -n "$FRAMEWORK" ]; then
180
	FRAMEWORK=${FRAMEWORK^^}
181
	if [[ -z "${FRAMEWORKS[$FRAMEWORK]}" ]]; then
Carsten Csiky's avatar
Carsten Csiky committed
182
	    error 'ERROR: Unknown framework: ' "$FRAMEWORK"
183
184
185
186
	fi
    fi

    if [ -z "$IMAGE" ]; then
187
        IMAGE="dynamo:latest-${FRAMEWORK,,}"
Carsten Csiky's avatar
Carsten Csiky committed
188
        if [ -n "${TARGET}" ]; then
189
190
            IMAGE="${IMAGE}-${TARGET}"
        fi
191
192
193
194
195
196
197
198
199
200
201
202
203
204
    fi

    if [[ ${GPUS^^} == "NONE" ]]; then
	GPU_STRING=""
    else
	GPU_STRING="--gpus ${GPUS}"
    fi

    if [[ ${NAME^^} == "" ]]; then
	NAME_STRING=""
    else
	NAME_STRING="--name ${NAME}"
    fi

205
206
207
208
209
210
    if [[ ${ENTRYPOINT^^} == "" ]]; then
	ENTRYPOINT_STRING=""
    else
	ENTRYPOINT_STRING="--entrypoint ${ENTRYPOINT}"
    fi

Carsten Csiky's avatar
Carsten Csiky committed
211
    if [ -n "$MOUNT_WORKSPACE" ]; then
212
213
214
215
216
217
218
219
	VOLUME_MOUNTS+=" -v ${SOURCE_DIR}/..:/workspace "
	VOLUME_MOUNTS+=" -v /tmp:/tmp "
	VOLUME_MOUNTS+=" -v /mnt/:/mnt "

	if [ -z "$HF_CACHE" ]; then
	    HF_CACHE=$DEFAULT_HF_CACHE
	fi

Carsten Csiky's avatar
Carsten Csiky committed
220
	if [ -z "${PRIVILEGED}" ]; then
221
222
223
224
225
226
227
228
229
230
231
232
	    PRIVILEGED="TRUE"
	fi

	ENVIRONMENT_VARIABLES+=" -e HF_TOKEN"

	INTERACTIVE=" -it "
    fi

    if [[ ${HF_CACHE^^} == "NONE" ]]; then
	HF_CACHE=
    fi

Carsten Csiky's avatar
Carsten Csiky committed
233
234
    if [ -n "$HF_CACHE" ]; then
	mkdir -p "$HF_CACHE"
235
236
237
	VOLUME_MOUNTS+=" -v $HF_CACHE:/root/.cache/huggingface"
    fi

Carsten Csiky's avatar
Carsten Csiky committed
238
    if [ -z "${PRIVILEGED}" ]; then
239
240
241
	PRIVILEGED="FALSE"
    fi

Carsten Csiky's avatar
Carsten Csiky committed
242
    if [ -z "${RM}" ]; then
243
244
245
	RM="TRUE"
    fi

246
247
248
249
250
251
    if [[ ${PRIVILEGED^^} == "FALSE" ]]; then
	PRIVILEGED_STRING=""
    else
	PRIVILEGED_STRING="--privileged"
    fi

252
253
254
255
256
257
    if [[ ${RM^^} == "FALSE" ]]; then
	RM_STRING=""
    else
	RM_STRING=" --rm "
    fi

258
259
260
261
262
263
    if [ -n "$USE_NIXL_GDS" ]; then
        VOLUME_MOUNTS+=" -v /run/udev:/run/udev:ro "
        NIXL_GDS_CAPS="--cap-add=IPC_LOCK"
    else
        NIXL_GDS_CAPS=""
    fi
264

265
266
267
268
269
270
    REMAINING_ARGS=("$@")
}

show_help() {
    echo "usage: run.sh"
    echo "  [--image image]"
Carsten Csiky's avatar
Carsten Csiky committed
271
    echo "  [--framework framework one of ${!FRAMEWORKS[*]}]"
272
273
274
275
276
    echo "  [--name name for launched container, default NONE] "
    echo "  [--privileged whether to launch in privileged mode, default FALSE unless mounting workspace]"
    echo "  [--dry-run print docker commands without running]"
    echo "  [--hf-cache directory to volume mount as the hf cache, default is NONE unless mounting workspace]"
    echo "  [--gpus gpus to enable, default is 'all', 'none' disables gpu support]"
277
    echo "  [--use-nixl-gds add volume mounts and capabilities needed for NVIDIA GPUDirect Storage]"
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
    echo "  [-v add volume mount]"
    echo "  [-e add environment variable]"
    echo "  [--mount-workspace set up for local development]"
    echo "  [-- stop processing and pass remaining args as command to docker run]"
    exit 0
}

missing_requirement() {
    error "ERROR: $1 requires an argument."
}

error() {
    printf '%s %s\n' "$1" "$2" >&2
    exit 1
}

get_options "$@"

# RUN the image

if [ -z "$RUN_PREFIX" ]; then
    set -x
fi

302
303
304
305
306
307
308
309
310
311
312
313
314
${RUN_PREFIX} docker run \
    ${GPU_STRING} \
    ${INTERACTIVE} \
    ${RM_STRING} \
    --network host \
    --shm-size=10G \
    --ulimit memlock=-1 \
    --ulimit stack=67108864 \
    --ulimit nofile=65536:65536 \
    ${ENVIRONMENT_VARIABLES} \
    ${VOLUME_MOUNTS} \
    -w /workspace \
    --cap-add CAP_SYS_PTRACE \
315
    ${NIXL_GDS_CAPS} \
316
317
318
319
320
321
    --ipc host \
    ${PRIVILEGED_STRING} \
    ${NAME_STRING} \
    ${ENTRYPOINT_STRING} \
    ${IMAGE} \
    "${REMAINING_ARGS[@]}"
322
323

{ set +x; } 2>/dev/null