forked from ai-dynamo/dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.py
More file actions
executable file
·247 lines (214 loc) · 7.53 KB
/
Copy pathrender.py
File metadata and controls
executable file
·247 lines (214 loc) · 7.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
64
65
66
67
68
69
70
71
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
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
240
241
242
243
244
245
246
247
#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
import argparse
import re
from pathlib import Path
import yaml
from jinja2 import Environment, FileSystemLoader, StrictUndefined
_VALID_ARCHS = {"amd64", "arm64"}
def parse_platform(platform_str: str) -> str:
"""Normalize a --platform value to the template variable used by Jinja2.
Accepts Docker-style values (linux/amd64, linux/arm64) or short form (amd64,
arm64, x86_64), and comma-separated lists for multi-arch
(linux/amd64,linux/arm64).
Returns one of: 'amd64', 'arm64', or 'multi'.
Raises ValueError for unrecognized architecture values.
"""
parts = [p.strip() for p in platform_str.split(",")]
archs = [p.split("/")[-1] for p in parts]
for arch in archs:
if arch not in _VALID_ARCHS:
raise ValueError(
f"Unrecognized architecture '{arch}' in --platform '{platform_str}'. "
f"Valid architectures: {', '.join(sorted(_VALID_ARCHS))}"
)
if len(archs) > 1:
return "multi"
return archs[0]
def parse_args():
parser = argparse.ArgumentParser(
description="Renders dynamo Dockerfiles from templates"
)
parser.add_argument(
"--framework",
type=str,
default="vllm",
choices=["dynamo", "vllm", "sglang", "trtllm"],
help="Dockerfile framework to use",
)
parser.add_argument(
"--device",
type=str,
default="cuda",
choices=["cuda", "xpu", "cpu"],
help="Dockerfile device to use",
)
parser.add_argument(
"--target",
type=str,
default="runtime",
help="Dockerfile target to use. Non-exhaustive examples: [runtime, dev, local-dev]",
)
parser.add_argument(
"--platform",
type=str,
default="linux/amd64",
help=(
"Target platform(s), Docker-style. Examples:\n"
" linux/amd64 single-arch amd64 build\n"
" linux/arm64 single-arch arm64 build\n"
" linux/amd64,linux/arm64 multi-arch build; the rendered Dockerfile uses\n"
" Docker BuildX TARGETARCH directly (set per platform\n"
" by: docker buildx build --platform linux/amd64,linux/arm64)"
),
)
parser.add_argument(
"--cuda-version",
type=str,
default="13.0",
choices=["13.0", "13.1"],
help="CUDA version to use. [13.0 for vllm and sglang, 13.1 for trtllm]. Not required for non-cuda devices.",
)
parser.add_argument("--make-efa", action="store_true", help="Enable AWS EFA")
parser.add_argument(
"--output-short-filename",
action="store_true",
help="Output filename is rendered.Dockerfile instead of <framework>-<target>-cuda<cuda_version>-<arch>-rendered.Dockerfile",
)
parser.add_argument(
"--show-result",
action="store_true",
help="Prints the rendered Dockerfile to stdout.",
)
args = parser.parse_args()
return args
def validate_args(args):
valid_inputs = {
"vllm": {
"device": ["cuda", "xpu", "cpu"],
"target": [
"runtime",
"dev",
"local-dev",
"wheel_builder",
"base",
],
"cuda_version": ["13.0"],
},
"trtllm": {
"device": ["cuda"],
"target": [
"runtime",
"dev",
"local-dev",
"wheel_builder",
"base",
],
"cuda_version": ["13.1"],
},
"sglang": {
"device": ["cuda", "xpu"],
"target": [
"runtime",
"dev",
"local-dev",
"wheel_builder",
"base",
],
"cuda_version": ["13.0"],
},
"dynamo": {
"device": ["cuda"],
"target": [
"runtime",
"dev",
"local-dev",
"frontend",
"planner",
"wheel_builder",
"base",
],
"cuda_version": ["13.0"],
},
}
if args.framework in valid_inputs:
cuda_version_valid = (
args.device != "cuda"
or args.cuda_version in valid_inputs[args.framework]["cuda_version"]
)
if (
args.target in valid_inputs[args.framework]["target"]
and cuda_version_valid
and args.device in valid_inputs[args.framework]["device"]
):
# XPU is only supported on amd64 (Intel discrete GPUs)
if args.device == "xpu" and args.platform != "amd64":
raise ValueError(
f"XPU builds require --platform linux/amd64, "
f"got '{args.platform}'"
)
return
raise ValueError(
f"Invalid input combination: [framework={args.framework},target={args.target},cuda_version={args.cuda_version},device={args.device}]"
)
raise ValueError(
f"Invalid input combination: [framework={args.framework},target={args.target},cuda_version={args.cuda_version},device={args.device}]"
)
def _make_jinja_env(script_dir):
return Environment(
loader=FileSystemLoader(script_dir),
trim_blocks=False,
lstrip_blocks=True,
undefined=StrictUndefined,
)
def _render_context(args):
return dict(
framework=args.framework,
device=args.device,
target=args.target,
platform=args.platform,
cuda_version=args.cuda_version,
make_efa=args.make_efa,
)
def render(args, context, script_dir):
env = _make_jinja_env(script_dir)
template = env.get_template("Dockerfile.template")
rendered = template.render(context=context, **_render_context(args))
# Replace all instances of 3+ newlines with 2 newlines
cleaned = re.sub(r"\n{3,}", "\n\n", rendered)
if args.output_short_filename:
filename = "rendered.Dockerfile"
else:
filename = f"{args.framework}-{args.target}-{args.device}{args.cuda_version}-{args.platform}-rendered.Dockerfile"
with open(f"{script_dir}/{filename}", "w") as f:
f.write(cleaned)
if args.show_result:
print("##############")
print("# Dockerfile #")
print("##############")
print(cleaned)
print("##############")
print(f"INFO: Generated Dockerfile written to {script_dir}/{filename}")
def main():
args = parse_args()
# Normalize platform to template variable ('amd64', 'arm64', or 'multi')
# and store it back so render() and validate_args() both see the normalized form.
args.platform = parse_platform(args.platform)
validate_args(args)
# Clear cuda version for non-cuda device
if args.device != "cuda":
args.cuda_version = ""
script_dir = Path(__file__).parent
with open(f"{script_dir}/context.yaml", "r") as f:
context = yaml.safe_load(f)
render(args, context, script_dir)
if args.target == "local-dev":
print(
"INFO: Remember to add --build-arg values for USER_UID and USER_GID when building a local-dev image!"
)
print(
" Recommendation: --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g)"
)
if __name__ == "__main__":
main()