test_hicache_storage.py 1.48 KB
Newer Older
1
import time
2
3
4
import unittest
from types import SimpleNamespace

5
from sglang.srt.utils import is_hip, kill_process_tree
6
7
8
9
10
11
12
13
14
from sglang.test.run_eval import run_eval
from sglang.test.test_utils import (
    DEFAULT_MODEL_NAME_FOR_TEST,
    DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
    DEFAULT_URL_FOR_TEST,
    CustomTestCase,
    popen_launch_server,
)

15
16
_is_hip = is_hip()

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

class TestHiCache(CustomTestCase):
    @classmethod
    def setUpClass(cls):
        cls.model = DEFAULT_MODEL_NAME_FOR_TEST
        cls.base_url = DEFAULT_URL_FOR_TEST
        cls.process = popen_launch_server(
            cls.model,
            cls.base_url,
            timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
            other_args=[
                "--enable-hierarchical-cache",
                "--mem-fraction-static",
                0.7,
                "--hicache-size",
32
                100 if not _is_hip else 200,
33
34
35
36
37
38
39
40
41
42
                "--page-size",
                "64",
                "--hicache-storage-backend",
                "file",
            ],
        )

    @classmethod
    def tearDownClass(cls):
        kill_process_tree(cls.process.pid)
43
        time.sleep(5)
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

    def test_mmlu(self):
        args = SimpleNamespace(
            base_url=self.base_url,
            model=self.model,
            eval_name="mmlu",
            num_examples=64,
            num_threads=32,
        )

        metrics = run_eval(args)
        self.assertGreaterEqual(metrics["score"], 0.65)


if __name__ == "__main__":
    unittest.main()