added hotfix for batched bo

This commit is contained in:
2026-08-12 14:50:05 +09:00
parent c638cc57a0
commit 781ec07b1e
7 changed files with 102 additions and 49 deletions
+1 -5
View File
@@ -8,11 +8,7 @@ def main(config_yaml):
with open(config_yaml, 'r') as f:
config = yaml.safe_load(f)
job_types = {
'random+sobo': pipelines.sobo_pipeline
}
job_types[config['job']['type']](config)
pipelines.job_types[config['job']['type']](config)
if __name__ == "__main__":