@@ -197,8 +197,6 @@ def test_multinode_agentic_identity_fields_match() -> None:
197197def write_agentic_artifacts (
198198 root : Path ,
199199 conc : int = 16 ,
200- * ,
201- aggregate : bool = True ,
202200) -> None :
203201 result_name = f"dsv4_tp8_conc{ conc } _offloadcpu_result"
204202 point_dir = root / f"bmk_agentic_{ result_name } "
@@ -207,12 +205,6 @@ def write_agentic_artifacts(
207205 json .dumps (agentic_result (conc ))
208206 )
209207 (root / f"agentic_{ result_name } " ).mkdir ()
210- if aggregate :
211- aggregate_dir = root / "agentic_aggregated"
212- aggregate_dir .mkdir ()
213- (aggregate_dir / "summary.csv" ).write_text (
214- f"exp_name,status\n agentic_{ result_name } ,SUCCESS\n "
215- )
216208
217209
218210def test_eval_validation_requires_raw_result_dirs_not_eval_debug_dirs (
@@ -398,7 +390,7 @@ def test_fixed_sequence_validation_rejects_duplicate_identity(
398390 assert "fixed-sequence artifacts contain 1 duplicate row(s)" in errors
399391
400392
401- def test_agentic_validation_checks_points_raw_and_aggregate (tmp_path : Path ) -> None :
393+ def test_agentic_validation_checks_points_and_raw_artifacts (tmp_path : Path ) -> None :
402394 write_agentic_artifacts (tmp_path )
403395
404396 assert validate_agentic_artifacts (tmp_path ) == []
@@ -407,7 +399,7 @@ def test_agentic_validation_checks_points_raw_and_aggregate(tmp_path: Path) -> N
407399def test_agentic_validation_accepts_run_sweep_point_artifacts (
408400 tmp_path : Path ,
409401) -> None :
410- write_agentic_artifacts (tmp_path , aggregate = False )
402+ write_agentic_artifacts (tmp_path )
411403
412404 assert validate_agentic_artifacts (tmp_path ) == []
413405
@@ -420,8 +412,6 @@ def test_agentic_validation_accepts_additional_source_identity(
420412 extra_dir .mkdir ()
421413 (extra_dir / "extra.json" ).write_text (json .dumps (agentic_result (32 )))
422414 (tmp_path / "agentic_extra" ).mkdir ()
423- summary = tmp_path / "agentic_aggregated" / "summary.csv"
424- summary .write_text (summary .read_text () + "agentic_extra,SUCCESS\n " )
425415
426416 assert validate_agentic_artifacts (tmp_path ) == []
427417
@@ -443,7 +433,7 @@ def test_agentic_validation_requires_point_and_raw_artifacts(
443433def test_agentic_validation_rejects_duplicate_point_identity (
444434 tmp_path : Path ,
445435) -> None :
446- write_agentic_artifacts (tmp_path , aggregate = False )
436+ write_agentic_artifacts (tmp_path )
447437 point_dir = (
448438 tmp_path / "bmk_agentic_dsv4_tp8_conc16_offloadcpu_result"
449439 )
0 commit comments