"deploy/Kubernetes/common/tests/resource_gpu.yaml" did not exist on "08fcd7e93ba5df3093a8b54fe79e0895fe7a5f15"
run.sh 6.72 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash -e
# 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.

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.

ptarasiewiczNV's avatar
ptarasiewiczNV committed
25
declare -A FRAMEWORKS=(["STANDARD"]=1 ["TENSORRTLLM"]=2 ["VLLM"]=3 ["VLLM_NIXL"]=4)
26
DEFAULT_FRAMEWORK=VLLM
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63

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=

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

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

        shift
    done

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

173
174
175
176
    if [[ ${FRAMEWORK^^} == "VLLM_NIXL" ]]; then
	FRAMEWORK="VLLM"
    fi

177
178
179
180
181
182
183
184
    if [ ! -z "$FRAMEWORK" ]; then
	FRAMEWORK=${FRAMEWORK^^}
	if [[ ! -n "${FRAMEWORKS[$FRAMEWORK]}" ]]; then
	    error 'ERROR: Unknown framework: ' $FRAMEWORK
	fi
    fi

    if [ -z "$IMAGE" ]; then
185
        IMAGE="dynamo:latest-${FRAMEWORK,,}"
186
187
188
        if [ ! -z ${TARGET} ]; then
            IMAGE="${IMAGE}-${TARGET}"
        fi
189
190
191
192
193
194
195
196
197
198
199
200
201
202
    fi

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

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

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

209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
    if [ ! -z "$MOUNT_WORKSPACE" ]; then
	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

	if [ -z ${PRIVILEGED} ]; then
	    PRIVILEGED="TRUE"
	fi

	ENVIRONMENT_VARIABLES+=" -e HF_TOKEN"

	INTERACTIVE=" -it "
    fi

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

    if [ ! -z "$HF_CACHE" ]; then
	mkdir -p $HF_CACHE
	VOLUME_MOUNTS+=" -v $HF_CACHE:/root/.cache/huggingface"
    fi

    if [ -z ${PRIVILEGED} ]; then
	PRIVILEGED="FALSE"
    fi

240
241
242
243
    if [ -z ${RM} ]; then
	RM="TRUE"
    fi

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

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


257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
    REMAINING_ARGS=("$@")
}

show_help() {
    echo "usage: run.sh"
    echo "  [--image image]"
    echo "  [--framework framework one of ${!FRAMEWORKS[@]}]"
    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]"
    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

293
${RUN_PREFIX} docker run ${GPU_STRING} ${INTERACTIVE} ${RM_STRING} --network host --shm-size=10G --ulimit memlock=-1 --ulimit stack=67108864 ${ENVIRONMENT_VARIABLES} ${VOLUME_MOUNTS} -w /workspace --cap-add CAP_SYS_PTRACE --ipc host ${PRIVILEGED_STRING} ${NAME_STRING} ${ENTRYPOINT_STRING} ${IMAGE} "${REMAINING_ARGS[@]}"
294
295

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