From b050e5153ae76980065a6714426f941ac8df3d39 Mon Sep 17 00:00:00 2001 From: Yikai Gao Date: Mon, 1 Apr 2024 09:29:35 -0700 Subject: [PATCH] remove unused arguments from LaunchConfig (#871) Summary: D55562170 was trying to add a pyre-fixme. This diff removes the log_dir and tee from arguments. Differential Revision: D55592319 --- torchx/test/fixtures.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/torchx/test/fixtures.py b/torchx/test/fixtures.py index 3cc669034..58e6a1d3e 100644 --- a/torchx/test/fixtures.py +++ b/torchx/test/fixtures.py @@ -190,8 +190,6 @@ def run_ddp( rdzv_endpoint="localhost:0", max_restarts=0, monitor_interval=0.01, - log_dir=str(self.tmpdir), - tee=Std.ALL, ) return elastic_launch(config, entrypoint=fn)