Skip to content

Commit c5a63c2

Browse files
committed
Fix linter
Signed-off-by: Vladimir Suvorov <suvorovv@google.com>
1 parent 7c73fd9 commit c5a63c2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/pipeline_parallelism_test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ def assert_pipeline_same_output_and_grad(self, config, single_pipeline_stage_cla
7777
if "rngs" not in str(exc):
7878
raise
7979
rngs = nnx.Rngs(params=0)
80-
single_pipeline_stage = single_pipeline_stage_class(
81-
config=config, mesh=mesh, model_mode=model_mode, rngs=rngs
82-
)
80+
single_pipeline_stage = single_pipeline_stage_class(config=config, mesh=mesh, model_mode=model_mode, rngs=rngs)
8381

8482
def get_inputs(batch_size, sequence, features):
8583
"""Get random inputs, and random dummy targets

0 commit comments

Comments
 (0)