@@ -157,6 +157,7 @@ def test_circular_minimum_microbatches_same_output_and_grad(self):
157157 config = pyconfig .initialize (
158158 [sys .argv [0 ], os .path .join (PKG_DIR , "configs" , "base.yml" )],
159159 enable_checkpointing = False ,
160+ enable_goodput_recording = False ,
160161 run_name = "circular_minimum_microbatches" ,
161162 max_target_length = 128 ,
162163 base_emb_dim = 28 ,
@@ -173,6 +174,7 @@ def test_circular_extra_microbatches_same_output_and_grad(self):
173174 config = pyconfig .initialize (
174175 [sys .argv [0 ], os .path .join (PKG_DIR , "configs" , "base.yml" )],
175176 enable_checkpointing = False ,
177+ enable_goodput_recording = False ,
176178 run_name = "circular_extra_microbatches" ,
177179 max_target_length = 128 ,
178180 base_emb_dim = 28 ,
@@ -189,6 +191,7 @@ def test_circular_ag_once(self):
189191 config = pyconfig .initialize (
190192 [sys .argv [0 ], os .path .join (PKG_DIR , "configs" , "base.yml" )],
191193 enable_checkpointing = False ,
194+ enable_goodput_recording = False ,
192195 run_name = "circular_ag_once" ,
193196 max_target_length = 128 ,
194197 base_emb_dim = 28 ,
@@ -239,6 +242,7 @@ def test_full_train_circular(self):
239242 "dataset_type=synthetic" ,
240243 "steps=3" ,
241244 "enable_checkpointing=False" ,
245+ "enable_goodput_recording=False" ,
242246 "ici_pipeline_parallelism=4" ,
243247 "num_layers_per_pipeline_stage=2" ,
244248 "num_pipeline_microbatches=8" ,
@@ -253,6 +257,7 @@ def test_delay_activation_forwarding_same_output_and_grad(self):
253257 config = pyconfig .initialize (
254258 [sys .argv [0 ], os .path .join (PKG_DIR , "configs" , "base.yml" )],
255259 enable_checkpointing = False ,
260+ enable_goodput_recording = False ,
256261 run_name = "activation_forwarding" ,
257262 max_target_length = 128 ,
258263 base_emb_dim = 28 ,
@@ -287,6 +292,7 @@ def test_full_train_non_circular(self):
287292 "dataset_type=synthetic" ,
288293 "steps=3" ,
289294 "enable_checkpointing=False" ,
295+ "enable_goodput_recording=False" ,
290296 "ici_pipeline_parallelism=4" ,
291297 "num_layers_per_pipeline_stage=8" ,
292298 "num_pipeline_microbatches=8" ,
@@ -318,6 +324,7 @@ def test_subset_layers(self):
318324 "dataset_type=synthetic" ,
319325 "steps=3" ,
320326 "enable_checkpointing=False" ,
327+ "enable_goodput_recording=False" ,
321328 "ici_pipeline_parallelism=4" ,
322329 "num_layers_per_pipeline_stage=1" ,
323330 "num_pipeline_repeats=2" ,
@@ -351,6 +358,7 @@ def test_full_train_fp8(self):
351358 "dataset_type=synthetic" ,
352359 "steps=3" ,
353360 "enable_checkpointing=False" ,
361+ "enable_goodput_recording=False" ,
354362 "ici_pipeline_parallelism=4" ,
355363 rf"tokenizer_path={ os .path .join (os .path .dirname (PKG_DIR ), 'assets' , 'tokenizer.llama2' )} " ,
356364 "quantization=fp8" ,
@@ -382,6 +390,7 @@ def test_full_train_nanoo_fp8(self):
382390 "dataset_type=synthetic" ,
383391 "steps=3" ,
384392 "enable_checkpointing=False" ,
393+ "enable_goodput_recording=False" ,
385394 "ici_pipeline_parallelism=4" ,
386395 rf"tokenizer_path={ os .path .join (os .path .dirname (PKG_DIR ), 'assets' , 'tokenizer.llama2' )} " ,
387396 "quantization=nanoo_fp8" ,
0 commit comments