#!/usr/bin/env python
"""KernBench CLI entry point — run from project root."""
import sys
from kernbench.cli.main import main

sys.exit(main())
