File tree Expand file tree Collapse file tree 3 files changed +1
-649
lines changed
Expand file tree Collapse file tree 3 files changed +1
-649
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ exports_files([
2929# DSE-specific flow configuration with tighter constraints
3030[orfs_flow (
3131 name = "mock-cpu" ,
32- variant = "{}" .format (i ),
3332 abstract_stage = "cts" ,
3433 arguments = {
3534 "CORE_ASPECT_RATIO" : "0.5" ,
@@ -63,6 +62,7 @@ exports_files([
6362 },
6463 tags = ["manual" ],
6564 top = "mock_cpu" ,
65+ variant = "{}" .format (i ),
6666 verilog_files = [":mock-cpu.sv" ],
6767) for i in range (N )]
6868
@@ -80,7 +80,6 @@ py_binary(
8080 name = "run" ,
8181 srcs = [
8282 "optimize_dse.py" ,
83- "plot_results.py" ,
8483 ],
8584 main = "optimize_dse.py" ,
8685 tags = ["manual" ],
Original file line number Diff line number Diff line change 2727import numpy as np
2828import optuna
2929
30- # Fix import for Bazel py_binary: add script dir to sys.path
31- sys .path .insert (0 , os .path .dirname (__file__ ))
32- from plot_results import plot_results
33-
34-
3530import matplotlib .pyplot as plt
3631from optuna .visualization .matplotlib import plot_pareto_front
3732import pandas
You can’t perform that action at this time.
0 commit comments