From: Clifford Wolf Date: Thu, 6 Feb 2014 21:31:58 +0000 (+0100) Subject: Disabled ABC retime for now (elliptic_curve_group testcase in yosys-bigsim failed) X-Git-Tag: yosys-0.2.0~56 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0192f1c66ea1335370770aef05fb73b9eaf0edce;p=yosys.git Disabled ABC retime for now (elliptic_curve_group testcase in yosys-bigsim failed) --- diff --git a/passes/abc/abc.cc b/passes/abc/abc.cc index 8f873867d..62a4474a0 100644 --- a/passes/abc/abc.cc +++ b/passes/abc/abc.cc @@ -29,10 +29,17 @@ // Kahn, Arthur B. (1962), "Topological sorting of large networks", Communications of the ACM 5 (11): 558–562, doi:10.1145/368996.369025 // http://en.wikipedia.org/wiki/Topological_sorting +#if 0 #define ABC_COMMAND_LIB "strash; retime; balance; dch; map; topo" #define ABC_COMMAND_CTR "strash; retime; balance; dch; map; topo; buffer; upsize; dnsize; stime" #define ABC_COMMAND_LUT "strash; retime; balance; dch; if" #define ABC_COMMAND_DFL "strash; retime; balance; dch; map" +#else +#define ABC_COMMAND_LIB "strash; balance; dch; map; topo" +#define ABC_COMMAND_CTR "strash; balance; dch; map; topo; buffer; upsize; dnsize; stime" +#define ABC_COMMAND_LUT "strash; balance; dch; if" +#define ABC_COMMAND_DFL "strash; balance; dch; map" +#endif #include "kernel/register.h" #include "kernel/sigtools.h"