Coverage for simulator/__init__.py: 0%
5 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-09 04:47 +0000
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-09 04:47 +0000
1"""
2Simulator package — provisioning sweeps, multi-request analysis, and plotting
3on top of the model_provisioner allocation policies.
5The allocation policy implementations live in ``streamwise/model_provisioner/``.
6"""
7import os
8import sys
10# Make model_provisioner importable for simulator modules.
11_STREAMWISE_DIR = os.path.normpath(
12 os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "streamwise")
13)
14if _STREAMWISE_DIR not in sys.path:
15 sys.path.insert(0, _STREAMWISE_DIR)