| """Benchmark utilities for large-scale and modality sanity-check runs.""" |
|
|
| from .cleanup import CleanupItem, execute_results_cleanup, plan_results_cleanup |
| from .budget_efficiency import ( |
| TimeImportanceControls, |
| clamp_time_importance, |
| controls_from_time_importance, |
| required_budget_metric_columns, |
| select_best_policy_budget, |
| summarize_diversity, |
| validate_budget_metric_schema, |
| ) |
| from .disk_guard import ( |
| DiskCleanupAction, |
| DiskSnapshot, |
| append_disk_snapshot, |
| requires_cleanup, |
| run_repository_local_cleanup, |
| snapshot_disk_state, |
| write_cleanup_actions, |
| write_disk_guard_report, |
| ) |
| from .large_library import build_large_benchmark_library |
| from .ordering import cluster_naive_order |
| from .policy_repair import ( |
| AdaptivePolicyVariant, |
| PolicyRuntimeState, |
| apply_stop_policy, |
| coverage_floor_reached, |
| coverage_fraction, |
| default_policy_variants, |
| effective_controls, |
| regret_stop_variant, |
| select_cluster_bootstrap_batch, |
| ) |
| from .multifidelity import ( |
| ExplorationControls, |
| StoppingControls, |
| UncertaintyControls, |
| controls_from_config, |
| enforce_control_limits, |
| simulate_multifidelity_policy, |
| ) |
| from .overnight_stop import ( |
| OBJECTIVES, |
| STOP_MODELS, |
| StopModelParams, |
| estimate_marginal_expected_gain, |
| estimate_probability_target_percentile, |
| is_trivial_objective_solution, |
| objective_value, |
| simulate_stop_model, |
| ) |
| from .runtime import AUTO_MINUS_FOUR, ThreadAllocation, detect_system_threads, enforce_thread_fairness, resolve_threads_used |
| from .reuse import ReuseCheck, validate_reuse_inputs |
|
|
| __all__ = [ |
| "AUTO_MINUS_FOUR", |
| "AdaptivePolicyVariant", |
| "CleanupItem", |
| "DiskCleanupAction", |
| "DiskSnapshot", |
| "PolicyRuntimeState", |
| "TimeImportanceControls", |
| "ThreadAllocation", |
| "ReuseCheck", |
| "apply_stop_policy", |
| "append_disk_snapshot", |
| "build_large_benchmark_library", |
| "clamp_time_importance", |
| "cluster_naive_order", |
| "coverage_floor_reached", |
| "coverage_fraction", |
| "controls_from_time_importance", |
| "default_policy_variants", |
| "detect_system_threads", |
| "effective_controls", |
| "estimate_marginal_expected_gain", |
| "estimate_probability_target_percentile", |
| "enforce_thread_fairness", |
| "execute_results_cleanup", |
| "is_trivial_objective_solution", |
| "objective_value", |
| "OBJECTIVES", |
| "STOP_MODELS", |
| "plan_results_cleanup", |
| "required_budget_metric_columns", |
| "regret_stop_variant", |
| "requires_cleanup", |
| "resolve_threads_used", |
| "run_repository_local_cleanup", |
| "simulate_multifidelity_policy", |
| "simulate_stop_model", |
| "StopModelParams", |
| "StoppingControls", |
| "ExplorationControls", |
| "UncertaintyControls", |
| "controls_from_config", |
| "enforce_control_limits", |
| "validate_reuse_inputs", |
| "select_best_policy_budget", |
| "select_cluster_bootstrap_batch", |
| "snapshot_disk_state", |
| "summarize_diversity", |
| "validate_budget_metric_schema", |
| "write_cleanup_actions", |
| "write_disk_guard_report", |
| ] |
|
|