mochi
Newbie level 1
- Joined
- Feb 5, 2013
- Messages
- 1
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,288
I'm trying to find a way NOT to dump signals from selective module/instance.
I tried a few things so far, but it seems like all the signals are dumped and slows down the simulation significantly.
Does anybody know how to avoid dumping signals from a specific module?
BTW, I use irun (cadence) to simulate.
$fsdbDumpfile("dump.fsdb");
$fsdbDumpvars(0, top);
$fsdbDumpvars("+IO_Only", top.exclude_inst);
===
$fsdbDumpfile("dump.fsdb");
$fsdbDumpvars(0, top);
$fsdbDumpvars("+skip_cell_instance=0", top.exclude_inst);
Thanks!
I tried a few things so far, but it seems like all the signals are dumped and slows down the simulation significantly.
Does anybody know how to avoid dumping signals from a specific module?
BTW, I use irun (cadence) to simulate.
$fsdbDumpfile("dump.fsdb");
$fsdbDumpvars(0, top);
$fsdbDumpvars("+IO_Only", top.exclude_inst);
===
$fsdbDumpfile("dump.fsdb");
$fsdbDumpvars(0, top);
$fsdbDumpvars("+skip_cell_instance=0", top.exclude_inst);
Thanks!
Last edited: