We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 131eece commit afddfdeCopy full SHA for afddfde
applications/ColossalChat/coati/distributed/consumer.py
@@ -73,6 +73,8 @@ def setup(self) -> None:
73
)
74
if self.plugin_config.get("pp_size", 1) > 1 and "num_microbatches" not in self.plugin_config:
75
plugin_config["microbatch_size"] = self.microbatch_size
76
+ if self.plugin_config.get("tp_size", 1) > 1:
77
+ plugin_config["parallel_output"] = False
78
plugin_config.update(self.plugin_config)
79
self.plugin = HybridParallelPlugin(**plugin_config)
80
self.booster = Booster(plugin=self.plugin)
0 commit comments