Cache optimizations (#418)

This commit is contained in:
Liangsheng Yin
2024-05-13 12:47:13 +08:00
committed by GitHub
parent 562b8857d8
commit 39191c8515
8 changed files with 117 additions and 96 deletions

View File

@@ -149,7 +149,8 @@ class ServerArgs:
"--schedule-heuristic",
type=str,
default=ServerArgs.schedule_heuristic,
help="Schudule mode: [lpm, weight, random, fcfs]",
choices=["lpm", "random", "fcfs", "dfs-weight"],
help="Scheduling Heuristic.",
)
parser.add_argument(
"--schedule-conservativeness",