Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] method through which I can avoid the lengthy procedure

Status
Not open for further replies.

ro9ty

Member level 4
Joined
Jan 24, 2012
Messages
74
Helped
61
Reputation
122
Reaction score
57
Trophy points
1,298
Location
India
Activity points
1,963
Hi all,

Can anyone suggest me a method through which i can avoid the lengthy procedure of 'extract_rc' everytime that i do an insert_buffer/verify_zrt_route or whatever. I have utilized the multi-cpu options but still it uses up a lot of my time. I know in encounter we have an option.
 

Re: Synopsys : To avoid extract_rc while running insert_buffer/ verify_zrt_route

here is an example:
# dont update timing and placement when eco command applied.
setEcoMode -batchMode true -refinePlace false -updateTiming false
getEcoMode

< do your ECO commands>

# to keep existing routing
refinePlace -preserveRouting true;
# this command could required long time, need to apply all ecoChangeCell previously requested
setEcoMode -batchMode false -updateTiming false;

# clear existing violation & re-route
editDeleteViolations
globalDetailRoute
 

Re: Synopsys : To avoid extract_rc while running insert_buffer/ verify_zrt_route

yeah even i found a similiar way..
just use the set_eco_timing (similiar command) to false and it will not extract RC again.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top