From 18d2a4fea5556487eec66aba5369254d0d46d0d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20R=C3=B6nninger?= Date: Tue, 30 Jun 2020 14:24:23 +0200 Subject: [PATCH] axi_xbar: Tone down runtime of ci --- scripts/run_vsim.sh | 4 ++-- test/tb_axi_xbar.sv | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/run_vsim.sh b/scripts/run_vsim.sh index 66a6b745f..7a14b428a 100755 --- a/scripts/run_vsim.sh +++ b/scripts/run_vsim.sh @@ -204,8 +204,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 diff --git a/test/tb_axi_xbar.sv b/test/tb_axi_xbar.sv index db7ef0235..8261e5216 100644 --- a/test/tb_axi_xbar.sv +++ b/test/tb_axi_xbar.sv @@ -30,12 +30,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,