Skip to content

Commit

Permalink
fix ref_file_check path
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Luar <jluar@precisioninno.com>
  • Loading branch information
luarss committed Feb 18, 2025
1 parent 18cde48 commit 701c5c0
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions tools/AutoTuner/test/ref_file_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import os

cur_dir = os.path.dirname(os.path.abspath(__file__))
src_dir = os.path.join(cur_dir, "../src")
orfs_dir = os.path.join(cur_dir, "../../../flow")
os.chdir(src_dir)


class RefFileCheck(unittest.TestCase):
Expand All @@ -15,8 +12,8 @@ class RefFileCheck(unittest.TestCase):

def setUp(self):
configs = [
"../../test/files/no_sdc_ref.json",
"../../test/files/no_fr_ref.json",
os.path.join(cur_dir, "./files/no_sdc_ref.json"),
os.path.join(cur_dir, "./files/no_fr_ref.json"),
]
self.commands = [
f"python3 -m autotuner.distributed"
Expand Down

0 comments on commit 701c5c0

Please sign in to comment.