We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d654f58 commit 493f055Copy full SHA for 493f055
1 file changed
src/ohip_bench/__init__.py
@@ -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