[CI][RFC] Replace black-jupyter with ruff-format (#37210)

Co-authored-by: Alison Shao <a.shao@wustl.edu>
This commit is contained in:
Alex Nails
2026-09-02 19:46:08 -07:00
committed by GitHub
co-authored by Alison Shao
parent 2641e427be
commit 28262c20df
1411 changed files with 7766 additions and 8176 deletions
@@ -118,10 +118,10 @@ def benchmark_with_inheritance():
cached_call_times.append(time_taken)
print(
f"First call (with MRO lookup): {sum(first_call_times)/len(first_call_times):.6f}s avg"
f"First call (with MRO lookup): {sum(first_call_times) / len(first_call_times):.6f}s avg"
)
print(f"Cached call: {sum(cached_call_times)/len(cached_call_times):.6f}s avg")
print(f"Caching improvement: {sum(first_call_times)/sum(cached_call_times):.2f}x")
print(f"Cached call: {sum(cached_call_times) / len(cached_call_times):.6f}s avg")
print(f"Caching improvement: {sum(first_call_times) / sum(cached_call_times):.2f}x")
def benchmark_dispatchers():
@@ -158,8 +158,8 @@ def benchmark_dispatchers():
print(f"for list: {list_time:.4f} s")
print(f"for dict: {dict_time:.4f} s")
print(f"improvement: {list_time/dict_time:.2f} x")
print(f"time reduce: {(1-dict_time/list_time) * 100:.1f} %")
print(f"improvement: {list_time / dict_time:.2f} x")
print(f"time reduce: {(1 - dict_time / list_time) * 100:.1f} %")
def test_memory_usage():
@@ -252,7 +252,7 @@ def simulate_real_workload():
print(f"list version: {list_time:.4f} s")
print(f"dict version: {dict_time:.4f} s")
print(f"improvement: {list_time/dict_time:.2f} x")
print(f"improvement: {list_time / dict_time:.2f} x")
if __name__ == "__main__":
+9 -6
View File
@@ -196,12 +196,15 @@ class TestGetNumaNodeIfAvailable(unittest.TestCase):
def test_auto_bind_disabled_skips_numa_detection(self, mock_avail, mock_query):
args = self._make_server_args(numa_node=None)
for bind_v2 in ("0", "1"):
with self.subTest(bind_v2=bind_v2), patch.dict(
os.environ,
{
"SGLANG_AUTO_NUMA_BIND": "0",
"SGLANG_NUMA_BIND_V2": bind_v2,
},
with (
self.subTest(bind_v2=bind_v2),
patch.dict(
os.environ,
{
"SGLANG_AUTO_NUMA_BIND": "0",
"SGLANG_NUMA_BIND_V2": bind_v2,
},
),
):
self.assertIsNone(get_numa_node_if_available(args, 0))
mock_avail.assert_not_called()