File size: 4,174 Bytes
d766458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Copyright 2025 ByteDance and/or its affiliates.
#
# 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.

import json
import os
import subprocess
import sys
import tempfile
import time
from abc import ABC, abstractmethod


class BasePredictor(ABC):
    """

    Abstract base class for predictors that execute external scripts via subprocess.



    Provides common functionality for initializing device configuration, setting up environment variables,

    and running predictions through external Python scripts with temporary input/output files.

    """

    def __init__(self, cfg, device_id: int = 0, seed: int = None, verbose=True):
        self.cfg = cfg
        self.device_id = device_id
        self.seed = seed
        self.verbose = verbose
        self.model_loaded = False
        self.process = None

        self.env = os.environ.copy()
        self.env["CUDA_VISIBLE_DEVICES"] = str(device_id)
        self.env["XLA_PYTHON_CLIENT_MEM_FRACTION"] = "0.5"
        self.env["XLA_PYTHON_CLIENT_PREALLOCATE"] = "false"

    def run(self, input_data):
        """

        Execute the prediction workflow by running an external Python script via subprocess.



        Steps:

        1. Write input_data to a temporary JSON file.

        2. Create a temporary file for script output.

        3. Construct command with script path, input/output paths, and seed (if specified).

        4. Run subprocess, stream stdout/stderr, and wait for completion.

        5. Read and return output from temporary file after cleanup.



        Args:

            input_data: Input data to pass to the external script (serialized as JSON).



        Returns:

            dict: Parsed output from the external script (deserialized from JSON).



        Raises:

            Exception: If subprocess execution fails.

        """
        with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
            json.dump(input_data, f)
            input_path = f.name

        with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
            output_path = f.name

        cmd = [
            "python3",
            "-u",
            self.script_path,
            "--input",
            input_path,
            "--output",
            output_path,
        ]
        if self.seed is not None:
            cmd.extend(["--seed", str(self.seed)])

        try:
            process = subprocess.Popen(
                cmd,
                stdout=subprocess.PIPE,
                stderr=subprocess.PIPE,
                text=True,
                encoding="utf-8",
                errors="replace",
                env=self.env,
            )
            while True:
                output = process.stdout.readline()
                if output == "" and process.poll() is not None:
                    break
                if output:
                    print(output.strip())

            while True:
                error = process.stderr.readline()
                if error == "" and process.poll() is not None:
                    break
                if error:
                    print(error.strip())

            returncode = process.wait()
            if self.verbose:
                print(f"Run subprocess success: {returncode}")

            with open(output_path, "r") as f:
                return json.load(f)

        except Exception as e:
            print(f"Run subprocess fail: {str(e)}")
            raise

        finally:
            # clean temp files
            os.unlink(input_path)
            os.unlink(output_path)