Jump to content

UVM assert(req.randomize(clkgen) with {clock.period ==period ;}); doesn't work in VCS


binliu

Recommended Posts

Hi ,

I am using UVM 1.0 from Accellera and VCS vcs-mx-E-2011.03.

In my sequence, I have the following syntax

assert(req.randomize(clkgen) with {clock.period ==m_period ;});

However, I see print out m_period is correct ( a non zero number) but clock.period in item req is zero.

I have a timescale directives in uvm_users_pkg as timescale 1ns/1ps, but I use +override_timescale 1ps/1ps as VCS_OPT

this syntax works fine with mti, but doesn't work in VCS. and because this is a clock generator, all the clock has period as "zero" , and VCS stops because it detected infinite loop (of course).

Anyone has experience on this?

Thanks!

Bin

Link to comment
Share on other sites

Hi Bin,

Please can you supply some more information.

The code you have written states you are randomize req.clkgen and are checking that req.clock.period == req.m_period. No randomization of clock.period or m_period will occur.

Is this your intention, I suspect it is not ?

Please modify testcase to show what you are trying to do.

program prog;
class clk;
   rand int period =1;
endclass

class foo;
  rand clk clock;
  rand int clkgen;
  rand int m_period = 1;
  function new();
     clock = new();      
  endfunction
endclass

  foo req;

  initial begin
     req=new();
     assert(req.clock.period ==req.m_period) 
assert(req.randomize(clkgen)) $info ("\n Randomization passed \n") ;
        else $error("\n Randomization failed \n");   
      else $error("values are not equal before randomization");
     end

endprogram

thanks,

Adiel.

Edited by adielkhan
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...