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 f7ed526 commit 2b23e50Copy full SHA for 2b23e50
src/forge/actors/policy.py
@@ -155,9 +155,14 @@ async def launch( # pyright: ignore[reportIncompatibleMethodOverride]
155
policy_proc_config = copy(process_config)
156
policy_proc_config.procs = 1
157
policy_proc_config.with_gpus = False
158
- policy_proc = await get_proc_mesh(
159
- process_config=policy_proc_config, host_mesh=host_mesh
160
- )
+
+ # TODO - not working yet, delete this once debugged
+ policy_proc_config.hosts = None
161
+ policy_proc = await get_proc_mesh(process_config=policy_proc_config)
162
163
+ # policy_proc = await get_proc_mesh(
164
+ # process_config=policy_proc_config, host_mesh=host_mesh
165
+ # )
166
167
if isinstance(engine_args, Mapping):
168
engine_args = EngineArgs(**engine_args)
0 commit comments