Skip to content

Commit

Permalink
added back skipping to test_pipeline_summary_writer
Browse files Browse the repository at this point in the history
  • Loading branch information
lipovsek-aws committed Dec 12, 2024
1 parent 4a78272 commit 3d0ccab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions axlearn/common/inference_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,9 @@ def test_pipeline_summary_writer(
global_batch_size: int,
data_partition: DataPartitionType,
):
supported, reason = is_supported(platform, mesh_shape, inference_dtype, global_batch_size, data_partition)
if not supported:
pytest.skip(reason=reason)
del platform # only used by is_supported_platform().
local_run = jax.process_count() == 1
mesh_axis_names = ("data", "model")
Expand Down

0 comments on commit 3d0ccab

Please sign in to comment.