14 lines
314 B
Python
14 lines
314 B
Python
#!/usr/bin/env python3
|
|
"""Run the local array-struct-field-loop benchmark scaffold."""
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
|
|
|
|
from runner import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main(Path(__file__).resolve().parent, sys.argv[1:]))
|