1
0
Files
h8-536-decoder/scripts/connect_ok_matrix.py
2026-05-26 14:01:10 +10:00

15 lines
288 B
Python

#!/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())