Jump to content

is uvm_resource_db::set and uvm_resource_db::read_by_name fullly implememted?


Recommended Posts

I try to use uvm_resource_db::set  and uvm_resource_db::read_by_name to pass the VIF, but failed. after debug , I find the cause is that the return of spell_check is hardcoded to FALSE. My question is why check_spell return false considering it is not implemented. Is uvm_resource_db::set and uvm_resource_db::read_by_name not fullly implememted, so that FALSE will provent user using uvm_resource_db? is it safe to hardcode it to always True here?

 

bool uvm_resource_pool::spell_check( const std::string& s ) const
{
  // TODO spelling checker
  //return uvm_spell_chkr<uvm_resource_types::rsrc_q_t>::check(rtab, s);
  return false; //dummy for now
}

 

Thanks,

Jerome

Link to comment
Share on other sites

Hi Jerome,

On your behalf I've created an issue on Github (Missing implementation for uvm_resource_pool::spell_check · Issue #295 · OSCI-WG/uvm-systemc (github.com)), so the Accellera VWG can follow up on this.

Which company are you working for? If this company is Accellera member, you can request access to the Accellera repositories and workspaces.

-- 

Bas

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...