1
0

testing around OK state

This commit is contained in:
Aiden
2026-05-26 14:01:10 +10:00
parent 4e0ef92e25
commit 74a2e2fd2c
5 changed files with 1049 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
"""Bench runner for CONNECT: OK reproducibility matrix tests."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from h8536.connect_ok_matrix import main
if __name__ == "__main__":
raise SystemExit(main())