We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18cde48 commit 701c5c0Copy full SHA for 701c5c0
tools/AutoTuner/test/ref_file_check.py
@@ -3,9 +3,6 @@
3
import os
4
5
cur_dir = os.path.dirname(os.path.abspath(__file__))
6
-src_dir = os.path.join(cur_dir, "../src")
7
-orfs_dir = os.path.join(cur_dir, "../../../flow")
8
-os.chdir(src_dir)
9
10
11
class RefFileCheck(unittest.TestCase):
@@ -15,8 +12,8 @@ class RefFileCheck(unittest.TestCase):
15
12
16
13
def setUp(self):
17
14
configs = [
18
- "../../test/files/no_sdc_ref.json",
19
- "../../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"),
20
]
21
self.commands = [
22
f"python3 -m autotuner.distributed"
0 commit comments