Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/launch_triton_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,5 @@ def get_cmd(world_size, tritonserver, grpc_port, http_port, metrics_port,
if args.multi_model:
assert args.world_size == 1, 'World size must be 1 when using multi-model. Processes will be spawned automatically to run the multi-GPU models'
env['TRTLLM_ORCHESTRATOR'] = '1'
subprocess.Popen(cmd, env=env)
child = subprocess.Popen(cmd, env=env)
child.communicate()