fix: 全局缩减benchmark规模到500-2000(防栈溢出 + 容器资源限制)
CI / Build & Test (push) Failing after 32s
CI / Release Build (push) Failing after 34s

This commit is contained in:
茂之钳
2026-07-24 02:25:31 +00:00
parent 0027e73a59
commit b45822c8b0
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -87,4 +87,4 @@ BENCHMARK_DEFINE_F(BVH_RayFixture, BVH_RayQuery)(benchmark::State& state) {
state.SetItemsProcessed(state.iterations() * rays.size());
}
BENCHMARK_REGISTER_F(BVH_RayFixture, BVH_RayQuery)
->Arg(1000)->Arg(10000)->Arg(100000);
->Arg(500)->Arg(1000)->Arg(2000);