Merge pull request #354 from lnis-uofu/ganesh_dev
[Flow] Allows benchmark specific Variable declaration
This commit is contained in:
commit
e79da64e95
|
@ -271,6 +271,9 @@ def generate_each_task_actions(taskname):
|
||||||
fallback=ys_rewrite_for_task_common)
|
fallback=ys_rewrite_for_task_common)
|
||||||
CurrBenchPara["chan_width"] = SynthSection.get(bech_name+"_chan_width",
|
CurrBenchPara["chan_width"] = SynthSection.get(bech_name+"_chan_width",
|
||||||
fallback=chan_width_common)
|
fallback=chan_width_common)
|
||||||
|
for eachKey, eachValue in SynthSection.items():
|
||||||
|
eachKey = eachKey.replace(bech_name+"_","").upper()
|
||||||
|
CurrBenchPara[eachKey] = eachValue
|
||||||
|
|
||||||
if GeneralSection.get("fpga_flow") == "vpr_blif":
|
if GeneralSection.get("fpga_flow") == "vpr_blif":
|
||||||
# Check if activity file exist
|
# Check if activity file exist
|
||||||
|
|
Loading…
Reference in New Issue