Skip to content

Commit 493f055

Browse files
authored
Create __init__.py
1 parent d654f58 commit 493f055

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

src/ohip_bench/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""
2+
IX-HapticSight benchmark package.
3+
4+
This package is reserved for:
5+
- deterministic benchmark scenario definitions
6+
- benchmark execution harnesses
7+
- metrics aggregation
8+
- result packaging
9+
- replay-backed regression checks
10+
11+
Design goals:
12+
- keep benchmark logic separate from runtime execution code
13+
- preserve repeatability and traceability
14+
- make scenario inputs and outputs explicit
15+
- support local tests before any hardware-in-the-loop evidence exists
16+
"""
17+
18+
from __future__ import annotations
19+
20+
__all__ = [
21+
"__version__",
22+
]
23+
24+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)