forked from The-OpenROAD-Project/OpenROAD-flow-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: AutoTuner: Add smoke tests for optimization with Vizier
Signed-off-by: Eryk Szpotanski <eszpotanski@antmicro.com>
- Loading branch information
1 parent
c005c7e
commit 0c871ec
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import unittest | ||
import subprocess | ||
import os | ||
from datetime import datetime | ||
|
||
cur_dir = os.path.dirname(os.path.abspath(__file__)) | ||
|
||
|
||
class BaseVizierSmokeTest(unittest.TestCase): | ||
platform = "" | ||
design = "" | ||
|
||
def setUp(self): | ||
self.config = os.path.join( | ||
cur_dir, | ||
f"../../../flow/designs/{self.platform}/{self.design}/autotuner.json", | ||
) | ||
self.experiment = f"smoke-test-tune-{self.platform}-{datetime.now().strftime('%Y-%m-%d-%H-%M-%S')}" | ||
self.command = ( | ||
"python3 -m autotuner.vizier" | ||
f" --design {self.design}" | ||
f" --platform {self.platform}" | ||
f" --experiment {self.experiment}" | ||
f" --config {self.config}" | ||
f" --iteration 1 --suggestions 1" | ||
) | ||
|
||
@unittest.skip("abstract_method") | ||
def test_tune(self): | ||
raise NotImplementedError( | ||
"This method needs to be implemented in the derivative classes." | ||
) | ||
|
||
|
||
class ASAP7VizierSmokeTest(BaseVizierSmokeTest): | ||
platform = "asap7" | ||
design = "gcd" | ||
|
||
def test_tune(self): | ||
out = subprocess.run(self.command, shell=True, check=True) | ||
successful = out.returncode == 0 | ||
self.assertTrue(successful) | ||
|
||
|
||
class SKY130HDVizierSmokeTest(BaseVizierSmokeTest): | ||
platform = "sky130hd" | ||
design = "gcd" | ||
|
||
def test_tune(self): | ||
out = subprocess.run(self.command, shell=True, check=True) | ||
successful = out.returncode == 0 | ||
self.assertTrue(successful) | ||
|
||
|
||
class IHPSG13G2VizierSmokeTest(BaseVizierSmokeTest): | ||
platform = "ihp-sg13g2" | ||
design = "gcd" | ||
|
||
def test_tune(self): | ||
out = subprocess.run(self.command, shell=True, check=True) | ||
successful = out.returncode == 0 | ||
self.assertTrue(successful) | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |