Skip to content

Commit 4ac5c51

Browse files
committed
refactor: shift scripts out of utils folder
Signed-off-by: Jack Luar <[email protected]>
1 parent 55ed419 commit 4ac5c51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flow/test/test_autotuner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ echo "Running Autotuner plotting smoke test"
4141
all_experiments=$(ls -d ./flow/logs/${PLATFORM}/${DESIGN_NAME}/smoke-test-tune*)
4242
all_experiments=$(basename -a $all_experiments)
4343
for expt in $all_experiments; do
44-
python3 tools/AutoTuner/src/autotuner/utils/plot.py \
44+
python3 tools/AutoTuner/scripts/plot.py \
4545
--platform ${PLATFORM} \
4646
--design ${DESIGN_NAME} \
4747
--experiment $expt

tools/AutoTuner/src/autotuner/utils/plot.py renamed to tools/AutoTuner/scripts/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
METRIC = "metric"
5151

5252
cur_dir = os.path.dirname(os.path.abspath(__file__))
53-
root_dir = os.path.join(cur_dir, "../../../../../")
53+
root_dir = os.path.join(cur_dir, "../../../")
5454
os.chdir(root_dir)
5555

5656

0 commit comments

Comments
 (0)