This commit is contained in:
Eugene Yurtsev
2025-03-18 22:20:18 -04:00
parent 4b9cdb4107
commit cb95821eb0
+22 -2
View File
@@ -390,13 +390,33 @@ for name, agraph, graph, input in benchmarks:
# Graph compilation times
compilation_benchmarks = (
(
"sequential_1000_compilation",
"sequential_1000",
create_sequential(1_000),
),
(
"sequential_10000_compilation",
"sequential_10000",
create_sequential(10_000),
),
(
"pydantic_state_25x300",
pydantic_state(300),
),
(
"pydantic_state_15x600",
pydantic_state(600),
),
(
"pydantic_state_9x1200",
pydantic_state(1200),
),
(
"wide_state_15x600",
wide_state(600),
),
(
"wide_state_9x1200",
wide_state(1200),
),
)
for name, graph, input in compilation_benchmarks: