subprocess.rs 2.96 KB
Newer Older
1
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.

use pyo3::{types::IntoPyDict, Python};
17
18
19
20
21
22
use std::{
    env,
    ffi::CString,
    os::fd::RawFd,
    path::{Path, PathBuf},
};
23

24
25
use crate::engines::MultiNodeConfig;

26
const PY_START_ENGINE: &str = include_str!("sglang_inc.py");
27
28
29
30
31
32
33
34
35
36
37
38

/// Start the Python sglang engine that listens on zmq socket
/// This is called by running `nio --internal-sglang-process
/// This does not return until the subprocess exits.
pub fn run_subprocess(
    // The prefix to put on the zmq socket names
    socket_id: &str,
    // Directory containing an HF repo with safetensors files, tokenizer, etc
    model_path: &Path,
    // The write half of a pipe, where sglang will signal when it's ready
    notify_pipe_fd: RawFd,
    // Multi node. Usually Default::default
39
    node_config: MultiNodeConfig,
40
41
    // Multi GPU. Usually Default::default
    gpu_config: super::MultiGPUConfig,
42
43
    // Allow passing any arguments to sglang
    extra_engine_args: Option<PathBuf>,
44
45
) -> anyhow::Result<()> {
    pyo3::prepare_freethreaded_python(); // or enable feature "auto-initialize"
46
    if let Ok(venv) = env::var("VIRTUAL_ENV") {
47
        let _ = Python::with_gil(|py| crate::engines::fix_venv(venv, py));
48
    }
49
    let dir = model_path.display().to_string();
50
51
52
    let extra_engine_args_str = &extra_engine_args
        .map(|p| p.display().to_string())
        .unwrap_or_default();
53
54
55
56
57
58
59
60
61
62
63
    Python::with_gil(|py| {
        let locals = [
            ("socket_id", socket_id),
            ("model_path", dir.as_str()),
            ("pipe_fd", &notify_pipe_fd.to_string()),
            // to_string because slice must all be the same type
            ("tp_size_str", &gpu_config.tp_size.to_string()),
            ("tp_rank_str", &gpu_config.tp_rank.to_string()),
            ("gpu_id_str", &gpu_config.gpu_id.to_string()),
            ("nnodes_str", &node_config.num_nodes.to_string()),
            ("node_rank_str", &node_config.node_rank.to_string()),
64
            ("dist_init_addr", &node_config.leader_addr),
65
            ("extra_engine_args", extra_engine_args_str),
66
67
68
        ]
        .into_py_dict(py)
        .unwrap();
69
        if let Err(err) = py.run(CString::new(PY_START_ENGINE)?.as_ref(), None, Some(&locals)) {
70
71
72
73
74
75
            anyhow::bail!("sglang engine run error: {err}");
        }
        tracing::info!("sglang subprocess exit");
        Ok(())
    })
}