Go to the source code of this file.
Functions | |
void | netlist_optimizations_top (netlist_t *netlist) |
void netlist_optimizations_top | ( | netlist_t * | netlist | ) |
Definition at line 39 of file netlist_optimizations.c.
00040 { 00041 #ifdef VPR6 00042 /* Perform a splitting of the multipliers for hard block mults */ 00043 iterate_multipliers(netlist); 00044 clean_multipliers(); 00045 00046 /* Perform a splitting of any hard block memories */ 00047 iterate_memories(netlist); 00048 clean_memories(); 00049 #endif 00050 }