We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef32805 commit 34db7a7Copy full SHA for 34db7a7
1 file changed
olmoearth_pretrain/internal/experiment.py
@@ -275,7 +275,8 @@ def launch(config: OlmoEarthExperimentConfig) -> None:
275
logger.info("Launching the experiment")
276
logger.info(config)
277
# Set follow=False if you don't want to stream the logs to the terminal
278
- config.launch.launch(follow=False)
+ # Default to enabling torchrun so we can run multi gpu scripts on single gpu
279
+ config.launch.launch(follow=False, torchrun=True)
280
281
282
def prep(config: OlmoEarthExperimentConfig) -> None:
0 commit comments