Altera_Forum
Honored Contributor
16 years agoIncremental Compilation PARTITION_IMPORT_FILE
I have a design with has a incremental compilation partition with a wrapper for a imported synthesis net list inside of it.
Is this enough to allow the tool to bring in the file properly? The script would go something like this set_instance_assignment -name PARTITION_HIERARCHY -to | -section_id Top set_instance_assignment -name PARTITION_HIERARCHY -to \"myEnt1:umyEnt1|myEnt2:umyEnt2" -section_id "myEnt2:umyEnt2" set_global_assignment -name PARTITION_NETLIST_TYPE SOURCE -section_id Top set_global_assignment -name PARTITION_NETLIST_TYPE POST_SYNTH -section_id "myEnt2:umyEnt2" set_global_assignment -name PARTITION_IMPORT_FILE "..\\myEnt2.qxp" -section_id "myEnt2:umyEnt2" set_global_assignment -name PARTITION_LAST_IMPORTED_FILE "..\\myEnt2.qxp" -section_id "myEnt2:umyEnt2" set_instance_assignment -name PARTITION_HIERARCHY -to "myEnt1:umyEnt1|myEnt2:umyEnt2" -section_id "myEnt2:umyEnt2" Do I need the final PARTITION_HIERARCHY or is that overriding the PARTITION_IMPORT. My initial guess is that the PARTITION_IMPORT already has a place since it is given a section ID. But maybe the PARITION_HIERARCHY needs to be created with a section_id and then have a netlist imported into it. Any explanation is appreciated.