Skip to content

Commit

Permalink
axi_xbar: Tone down runtime of ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Rönninger committed Jan 25, 2021
1 parent 39e9ab6 commit b34f24e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/run_vsim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ exec_test() {
;;
axi_xbar)
for GEN_ATOP in 0 1; do
for NUM_MST in 1 2 4 6; do
for NUM_SLV in 2 7 9; do
for NUM_MST in 1 6; do
for NUM_SLV in 2 9; do
for MST_ID_USE in 3 5; do
MST_ID=5
for DATA_WIDTH in 64 256; do
Expand Down
6 changes: 3 additions & 3 deletions test/tb_axi_xbar.sv
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ module tb_axi_xbar #(
/// Number of AXI slaves connected to the xbar. (Number of master ports)
parameter int unsigned TbNumSlaves = 32'd8,
/// Number of write transactions per master.
parameter int unsigned TbNumWrites = 32'd1000,
parameter int unsigned TbNumWrites = 32'd100,
/// Number of read transactions per master.
parameter int unsigned TbNumReads = 32'd1000,
parameter int unsigned TbNumReads = 32'd100,
/// AXI4+ATOP ID wisth of the masters connected to the slave ports of the DUT.
/// The ID width of the salves is calulated depending on the xbar configuration.
parameter int unsigned TbAxiIdWidthMasters = 32'd4,
parameter int unsigned TbAxiIdWidthMasters = 32'd5,
/// The used ID width of the DUT.
/// Has to be `TbAxiIdWidthMasters >= TbAxiIdUsed`.
parameter int unsigned TbAxiIdUsed = 32'd3,
Expand Down

0 comments on commit b34f24e

Please sign in to comment.