-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add orchestrator #58
base: main
Are you sure you want to change the base?
Add orchestrator #58
Conversation
…m/adaptive_scheduler into add_orchestrator
…cheduler into document_orchestrator
…rator Document orchestrator
…cheduler into add_orchestrator
…rolsystem/adaptive_scheduler into add_orchestrator
…_in_orchestrator Optimize airmass in orchestrator
@@ -111,7 +111,7 @@ python -c "from ortools.linear_solver import pywraplp as p; p.Solver.CreateSolve | |||
python -c "from ortools.linear_solver import pywraplp as p; p.Solver.CreateSolver('GLPK')" | |||
|
|||
# assumption: if it's trying to read the licence, it's probably linked properly | |||
strace -e openat python -c "from ortools.linear_solver import pywraplp as p; p.Solver.CreateSolver('GUROBI')" 2>&1 | grep -q gurobi.lic | |||
# strace -e openat python -c "from ortools.linear_solver import pywraplp as p; p.Solver.CreateSolver('GUROBI')" 2>&1 | grep -q gurobi.lic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just so the interns could build the container without full priviledges - we can remove this comment
@@ -22,7 +22,7 @@ class ConfigDBInterface(SendMetricMixin): | |||
""" | |||
|
|||
def __init__(self, configdb_url, telescope_classes, telescopes_file='data/telescopes.json', | |||
active_instruments_file='data/active_instruments.json'): | |||
active_instruments_file='data/active_instruments.json', overrides=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in this file all pertain to being able to override configdb values with a dict provided (which can be read in from a simple json file in the simulation orchestrator)
…m/adaptive_scheduler into add_orchestrator
Here's the full set of changes from the interns. This branch has already pulled in the feature/optimize_airmass branch, which is why I have it diff-ing off that branch rather than main. When reviewing, focus on the simulate package and specifically the metrics/plots files.