Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
587 changes: 587 additions & 0 deletions DEPLOYMENT_CHECKLIST.md

Large diffs are not rendered by default.

463 changes: 463 additions & 0 deletions QUICKSTART.md

Large diffs are not rendered by default.

579 changes: 579 additions & 0 deletions VALIDATION_SUMMARY.md

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions benchmarks/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
"""
Production-scale performance benchmarking suite.

Comprehensive benchmarks for:
- HBCM simulation performance
- Node.js API load testing
- OpenSim coupling overhead
- Control loop latency
- Memory profiling
- End-to-end system throughput

Usage:
# Run all benchmarks
python -m benchmarks.run_all

# Run specific benchmark
python -m benchmarks.hbcm_benchmark

# Generate report
python -m benchmarks.generate_report
"""

from .hbcm_benchmark import HBCMBenchmark
from .api_benchmark import APIBenchmark
from .control_loop_benchmark import ControlLoopBenchmark
from .opensim_benchmark import OpenSimBenchmark
from .memory_benchmark import MemoryBenchmark

__all__ = [
'HBCMBenchmark',
'APIBenchmark',
'ControlLoopBenchmark',
'OpenSimBenchmark',
'MemoryBenchmark',
]
Loading
Loading