From 4e3b35bfb0e9886a42be2e9d3c50066941dcd95d Mon Sep 17 00:00:00 2001 From: Amruth Sandhupatla Date: Mon, 23 Dec 2024 12:41:55 -0500 Subject: [PATCH] fix abs path bug for sweeps tests code (#16285) ### Ticket Link to Github Issue https://github.com/tenstorrent/tt-metal/issues/16284 ### Problem description Provide context for the problem. Custom Abs path is provided which fails sweeps tests for everyone ### What's changed Describe the approach used to solve the problem. Summarize the changes made and its impact. change abs path to rel path ### Checklist - [ ] Post commit CI passes - [ ] Blackhole Post commit (if applicable) - [ ] Model regression CI testing passes (if applicable) - [ ] Device performance regression CI testing passes (if applicable) - [ ] **(For models and ops writers)** Full [new models](https://github.com/tenstorrent/tt-metal/actions/workflows/full-new-models-suite.yaml) tests passes - [ ] New/Existing tests provide coverage for changes Signed-off-by: Amruth Sandhupatla --- .../sweep_framework/sweeps/data_movement/view/view_tt_torch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sweep_framework/sweeps/data_movement/view/view_tt_torch.py b/tests/sweep_framework/sweeps/data_movement/view/view_tt_torch.py index 241c2fef5dd..b4c06e88242 100644 --- a/tests/sweep_framework/sweeps/data_movement/view/view_tt_torch.py +++ b/tests/sweep_framework/sweeps/data_movement/view/view_tt_torch.py @@ -57,7 +57,7 @@ def parse_md_file_simple_no_regex(file_path): parameters = { "nightly": { "view_specs": parse_md_file_simple_no_regex( - "/home/jvega/work/reshape_host_merge/tt-metal/tests/sweep_framework/sweeps/data_movement/view/tt_torch_trace.md" + "./tests/sweep_framework/sweeps/data_movement/view/tt_torch_trace.md" ), "layout": [ttnn.ROW_MAJOR_LAYOUT, ttnn.TILE_LAYOUT], "dtype": [ttnn.bfloat16, ttnn.float32],