(gpu, queue, done_queue, args)
| 214 | |
| 215 | |
| 216 | def _worker(gpu, queue, done_queue, args): |
| 217 | while not queue.empty(): |
| 218 | config = queue.get() |
| 219 | if config is None: |
| 220 | return |
| 221 | done_queue.put(_launch_experiment(gpu, config, args)) |
| 222 | |
| 223 | |
| 224 | def _launch_experiment(gpu, config, args): |
nothing calls this directly
no test coverage detected