Skip to content

Commit

Permalink
Cleanup of synth_nanoxplore pass
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Sep 3, 2024
1 parent 54d237f commit 556c705
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions techlibs/nanoxplore/synth_nanoxplore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ struct SynthNanoXplorePass : public ScriptPass
log(" - medium: NG-Medium\n");
log(" - large: NG-Large\n");
log(" - ultra: NG-Ultra\n");
log(" - u300: NG-Ultra300\n");
log("\n");
log(" -json <file>\n");
log(" write the design to the specified JSON file. writing of an output file\n");
Expand Down Expand Up @@ -90,9 +89,6 @@ struct SynthNanoXplorePass : public ScriptPass
log(" -nobram\n");
log(" do not use block NX_RAM cells in output netlist\n");
log("\n");
log(" -nodsp\n");
log(" do not map multipliers to NX_DSP cells\n");
log("\n");
log(" -noiopad\n");
log(" do not insert IO buffers\n");
log("\n");
Expand All @@ -108,7 +104,7 @@ struct SynthNanoXplorePass : public ScriptPass
}

string top_opt, json_file, family;
bool flatten, abc9, nocy, nodffe, norfram, nobram, nodsp, noiopad, no_rw_check;
bool flatten, abc9, nocy, nodffe, norfram, nobram, noiopad, no_rw_check;
std::string postfix;
int min_ce_use, min_srst_use;

Expand All @@ -123,7 +119,6 @@ struct SynthNanoXplorePass : public ScriptPass
nodffe = false;
norfram = false;
nobram = false;
nodsp = false;
noiopad = false;
no_rw_check = false;
postfix = "";
Expand Down Expand Up @@ -195,10 +190,6 @@ struct SynthNanoXplorePass : public ScriptPass
nobram = true;
continue;
}
if (args[argidx] == "-nodsp") {
nodsp = true;
continue;
}
if (args[argidx] == "-iopad") {
noiopad = false;
continue;
Expand All @@ -222,8 +213,6 @@ struct SynthNanoXplorePass : public ScriptPass

if (family == "ultra") {
postfix = "_u";
} else if (family == "u300") {
postfix = "_u";
} else if (family == "medium") {
postfix = "_m";
} else if (family == "large") {
Expand Down

0 comments on commit 556c705

Please sign in to comment.