switch benches over to other runtime

This commit is contained in:
itsjunetime
2026-03-05 12:05:25 -06:00
parent a4c04c71b6
commit 3026cbce32
+6 -1
View File
@@ -34,7 +34,12 @@ fn for_all_combos(
name: &'static str,
mut f: impl FnMut(&Runtime, BenchmarkId, &'static str, ProtocolType)
) {
let rt = tokio::runtime::Runtime::new().unwrap();
let rt = tokio::runtime::Builder::new_multi_thread()
.worker_threads(3)
.enable_time()
.build()
.unwrap();
for proto in PROTOS {
for file in FILES {
f(