当前位置:网站首页>UVM in UVM_ report_ Enabled usage
UVM in UVM_ report_ Enabled usage
2022-06-27 01:25:00 【Alfred. HOO】
uvm_report_enabled
function int uvm_report_enabled(
int verbosity,
uvm_severity severity = UVM_INFO,
string id = "" )
If this severity /id The configured redundancy is greater than or equal to this redundancy , Then return to 1, Otherwise return to 0.
See also get_report_verbosity_level and uvm_report_enabled Global version of .
Example :
if(uvm_report_enabled(UVM_HIGH, UVM_INFO, "MEMDATA")) begin
memlayout = " {\n}";
foreach(mem[iu]) begin
memlayout = %sformatf("%s mem[%0d]: %8h", memlayout, i, mem[i]);
end
memlayout = {memlayout, " }\n"};
end
`uvm_info("MEMDATA", memlayout, UVM_HIGH)
边栏推荐
- Esp32-solo development tutorial to solve config_ FREERTOS_ UNICORE problem
- Meituan: data management and pit avoidance strategy summarized after stepping on Thunder for several years
- Kept to implement redis autofailover (redisha) 16
- UVM中uvm_config_db非直线的设置与获取
- Hid device descriptor and keyboard key value corresponding coding table in USB protocol
- Kept to implement redis autofailover (redisha) 13
- Unable to create a folder to save the sketch: MKDIR sketch
- Topolvm: kubernetes local persistence scheme based on LVM, capacity aware, dynamically create PV, and easily use local disk
- Summary of working at home during the epidemic | community essay solicitation
- Buuctf PWN write UPS (6)
猜你喜欢
随机推荐
超越锂电池——未来电池的概念
清华&智源 | CogView2:更快更好的文本图像生成模型
Hid device descriptor and keyboard key value corresponding coding table in USB protocol
Great vernacular with high concurrency (I)
How to use ch423? Cheap domestic IO expansion chip
UVM中uvm_report_enabled的用法
Keepalived 实现 Redis AutoFailover (RedisHA)11
Kept to implement redis autofailover (redisha) 14
Central Limit Theorem
接口测试框架实战(一) | Requests 与接口请求构造
CH423要如何使用,便宜的国产IO扩展芯片
Kept to implement redis autofailover (redisha) 16
世界很大,有人把二维码纹在脖子上
30 MySQL tutorial MySQL storage engine overview
Keepalived 实现 Redis AutoFailover (RedisHA)17
Esp32 experiment - self built web server distribution network 02
memcached基础4
Keepalived 实现 Redis AutoFailover (RedisHA)14
memcached基础3
ML:机器学习工程化之团队十大角色背景、职责、产出物划分之详细攻略








