addPortGroup
Add-On Required: This feature requires the ASIC Testbench for HDL Verifier add-on.
Description
addPortGroup(
adds a port group named svdpiConfig
,groupName
,portNames
)name
to the svdpiConfiguration
object, and assigns the ports listed in portNames
to that group.
Examples
Add Ports to Scoreboard
Create a configuration object using the UVM scoreboard template. Then add port groups to the object:
inFromMon
— monitor inputs to the scoreboardinFromPred
— predictor inputs to the scoreboardinErrorThreshold
— configuration inputs to the scoreboard
c = svdpiConfiguration('uvm-scoreboard'); addPortGroup(c, 'MONITOR_INPUTS','inFromMon'); % single input addPortGroup(c, 'PREDICTOR_INPUTS',{'inFromPred1','inFromPred2'}); % array of 2ports addPortGroup(c, 'CONFIG_OBJECT_INPUTS',{'inErrorThreshold'});
Add Ports to Predictor
Create a configuration object using the UVM predictor template. Then add port groups to the object:
inFromMon
— monitor inputs to the predictorinErrorThreshold
— configuration inputs to the predictor
c = svdpiConfiguration('uvm-predictor'); addPortGroup(c, 'PREDICTOR_INPUTS','inFromMon'); % single input addPortGroup(c, 'CONFIG_OBJECT_INPUTS',{'inErrorThreshold'});
Add Ports to Sequence
Create a configuration object using the UVM sequence template. Then add a configuration port group to the object:
snr
— configuration inputs to the sequence, defining sound to noise
ratio.
c = svdpiConfiguration('uvm-sequence'); addPortGroup(c, 'CONFIG_OBJECT_INPUTS',{'snr'});
Input Arguments
svdpiConfig
— SystemVerilog DPI configuration
svdpiConfiguration
object
SystemVerilog DPI configuration, specified as an svdpiConfiguration
object.
groupName
— HDL port group name
string | character vector
Add a port group to the svdpiConfiguration
object. Specify the name of the port group and a list of
ports as a string or character vector, separated by a comma.
Example: name='CONFIG_OBJECT_INPUTS',{'pErrorThreshold'}
adds an
input port group named 'CONFIG_OBJECT_INPUTS'
, with the ports listed
in {'pErrorThreshold'}
portNames
— HDL ports assigned to port group
string | character vector | cell array
Specify names of HDL ports to assign to the port group.
A string or character vector for a single port
A cell array of strings or character vectors for multiple ports
Version History
Introduced in R2023aR2023b: Sequence and Predictor templates support configuration ports
Add configuration ports to your UVM sequence or predictor by adding a
CONFIG_OBJECT_INPUTS
port group. Use the
addPortGroup
function to map configuration inputs to the UVM
component.
The predictor template has two new port groups: PREDICTOR_INPUTS
and
CONFIG_OBJECT_INPUTS
. By default, ALL_INPUTS
=
PREDICTOR_INPUTS
. You can define
CONFIG_OBJECT_INPUTS
or PREDICTOR_INPUTS
, and then
ALL_INPUTS
= PREDICTOR_INPUTS
+
CONFIG_OBJECT_INPUTS
.
Similarly, the sequence template has two new port groups:
SEQUENCE_INPUTS
and CONFIG_OBJECT_INPUTS
. By
default, ALL_INPUTS
= SEQUENCE_INPUTS
. You can define
CONFIG_OBJECT_INPUTS
or SEQUENCE_INPUTS
, and then
ALL_INPUTS
= SEQUENCE_INPUTS
+
CONFIG_OBJECT_INPUTS
.
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)