rajneeshT Posted December 7, 2012 Report Share Posted December 7, 2012 Hello, I face below fatal error while using uvm_do_on macro in Modelsim 10.1c version. ** Fatal: Internal error: ../../../src/solver/slvACTContext.c (1084) My sequence is as below: class sample_seq extends uvm_sequence; `uvm_object_utils(sample_seq) `uvm_declare_p_sequencer(abc_virtual_sequencer) sample_abc_seq abc_seq; function new(string name ="sample_seq"); super.new(name); endfunction : new task body(); if( p_sequencer.abc_sequencer!=null) `uvm_do_on(abc_seq , p_sequencer.abc_sequencer); endtask endclass Can anyone help me to figure out the issue in this approach?? Thanks Quote Link to comment Share on other sites More sharing options...
dave_59 Posted December 7, 2012 Report Share Posted December 7, 2012 First, you should never get an internal error from any tool. Contact Mentor directly with more details about the platform/OS you are using and the command line used to invoke the tool. It also help to show as much as possible in the output before the error occurred. Second, You can not use `uvm_do_ with Modelsim because it calls abc_seq.randomize(). You need Questa to do that. Quote Link to comment Share on other sites More sharing options...
rajneeshT Posted December 7, 2012 Author Report Share Posted December 7, 2012 Thanks for your reply. But with mti 6.6f version, the same sequence runs properly. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.