From b0afac87ffa591cefe152be5cc22e99455f69328 Mon Sep 17 00:00:00 2001 From: Dhruv Nair Date: Tue, 2 Jul 2024 05:02:15 +0000 Subject: [PATCH] update --- utils/fetch_torch_cuda_pipeline_test_matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/fetch_torch_cuda_pipeline_test_matrix.py b/utils/fetch_torch_cuda_pipeline_test_matrix.py index 744201cb2d48..235d346d9306 100644 --- a/utils/fetch_torch_cuda_pipeline_test_matrix.py +++ b/utils/fetch_torch_cuda_pipeline_test_matrix.py @@ -88,7 +88,7 @@ def main(): test_modules.extend(ALWAYS_TEST_PIPELINE_MODULES) # Get unique modules - test_modules = list(set(test_modules)) + test_modules = sorted(set(test_modules)) print(json.dumps(test_modules)) save_path = f"{PATH_TO_REPO}/reports"