From 870f996be7dee70224e1187ee0a108ba6a8ad3b7 Mon Sep 17 00:00:00 2001 From: Arjun Suresh Date: Sun, 24 Nov 2024 07:17:47 +0530 Subject: [PATCH 1/3] Fix formatting bug on module_misc.py --- automation/script/module_misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/script/module_misc.py b/automation/script/module_misc.py index 44c5bbe18..db42a322e 100644 --- a/automation/script/module_misc.py +++ b/automation/script/module_misc.py @@ -1251,12 +1251,12 @@ def regenerate_script_cmd(i): # Cleanup from env everything that has a host path value if i_run_cmd.get('env'): for key in list(i_run_cmd.get('env')): - if isinstance(i_run_cmd['env'][key], str): + if isinstance(i_run_cmd['env'][key], str) and ((os.path.join("local", "cache", "") in i_run_cmd['env'][key]) or (os.path.join("CM", "repos", "") in i_run_cmd['env'][key])): del (i_run_cmd['env'][key]) elif isinstance(i_run_cmd['env'][key], list): values_to_remove = [] for val in i_run_cmd['env'][key]: - if isinstance(val, str): + if isinstance(val, str) and ((os.path.join("local", "cache", "") in val) or (os.path.join("CM", "repos", "") in val)): values_to_remove.append(val) if values_to_remove == i_run_cmd['env'][key]: del (i_run_cmd['env'][key]) From 75f17a621bd658f94684dfbf974ae3d99c9e4961 Mon Sep 17 00:00:00 2001 From: Arjun Suresh Date: Sun, 24 Nov 2024 01:49:46 +0000 Subject: [PATCH 2/3] Update test-nvidia-mlperf-inference-implementations.yml --- .../workflows/test-nvidia-mlperf-inference-implementations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-nvidia-mlperf-inference-implementations.yml b/.github/workflows/test-nvidia-mlperf-inference-implementations.yml index f8f6f4eec..be894cfa9 100644 --- a/.github/workflows/test-nvidia-mlperf-inference-implementations.yml +++ b/.github/workflows/test-nvidia-mlperf-inference-implementations.yml @@ -2,7 +2,7 @@ name: MLPerf Inference Nvidia implementations on: schedule: - - cron: "02 00 * * *" #to be adjusted + - cron: "55 01 * * *" #to be adjusted jobs: run_nvidia: From 3c9328169dff47f5f02f480086273eb4b4f06044 Mon Sep 17 00:00:00 2001 From: Arjun Suresh Date: Sun, 24 Nov 2024 01:58:28 +0000 Subject: [PATCH 3/3] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ee6cdce3c..b61604874 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 +0.6.2