mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-20 12:17:19 -04:00
Deactivate randomization to save CI build time
This commit is contained in:
parent
7c09143664
commit
bdc11db4d0
2 changed files with 9 additions and 5 deletions
|
@ -46,8 +46,10 @@ module ariane_tb;
|
|||
string binary = "";
|
||||
|
||||
ariane_testharness #(
|
||||
.NUM_WORDS ( NUM_WORDS ),
|
||||
.InclSimDTM ( 1'b1 )
|
||||
.NUM_WORDS ( NUM_WORDS ),
|
||||
.InclSimDTM ( 1'b1 ),
|
||||
.StallRandomOutput ( 1'b1 ),
|
||||
.StallRandomInput ( 1'b1 )
|
||||
) dut (
|
||||
.clk_i,
|
||||
.rst_ni,
|
||||
|
|
|
@ -19,7 +19,9 @@ module ariane_testharness #(
|
|||
parameter int unsigned AXI_ADDRESS_WIDTH = 64,
|
||||
parameter int unsigned AXI_DATA_WIDTH = 64,
|
||||
parameter bit InclSimDTM = 1'b1,
|
||||
parameter int unsigned NUM_WORDS = 2**25 // memory size
|
||||
parameter int unsigned NUM_WORDS = 2**25, // memory size
|
||||
parameter bit StallRandomOutput = 1'b0,
|
||||
parameter bit StallRandomInput = 1'b0
|
||||
) (
|
||||
input logic clk_i,
|
||||
input logic rtc_i,
|
||||
|
@ -275,8 +277,8 @@ module ariane_testharness #(
|
|||
.b_t ( axi_pkg::b_chan_t ),
|
||||
.ar_t ( axi_pkg::ar_chan_t ),
|
||||
.r_t ( axi_pkg::r_chan_t ),
|
||||
.StallRandomOutput ( 1 ),
|
||||
.StallRandomInput ( 1 ),
|
||||
.StallRandomOutput ( StallRandomOutput ),
|
||||
.StallRandomInput ( StallRandomInput ),
|
||||
.FixedDelayInput ( 0 ),
|
||||
.FixedDelayOutput ( 0 )
|
||||
) i_axi_delayer (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue