Files
github-actions[bot] 5c97379765 sunnypilot v2026.003.000 release
date: 2026-08-01T16:05:18
master commit: 3a05c03079d796f533f342489b3f681cfd21f98d
2026-08-01 16:09:01 +08:00

18 lines
462 B
Python

from extra.hcqfuzz.spec import TestSpec
import random
class RingAllreduce(TestSpec):
def prepare(self, dev, seed):
random.seed(seed)
self.env = {
"GPUS": random.choice([2, 3, 4, 5, 6]),
"ITERS": random.randint(10, 1000),
"DEBUG": 2,
}
self.cmd = "python3 test/external/external_benchmark_multitensor_allreduce.py"
self.timeout = 10 * 60 # 10 minutes
def get_exec_state(self): return self.env, self.cmd, self.timeout