We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b4df9 commit 2a79bc7Copy full SHA for 2a79bc7
verification/cocotb/block/axi_adapter/test_bus_stress.py
@@ -68,7 +68,7 @@ async def initialize(dut, timeout=50):
68
await ClockCycles(tb.clk, 20)
69
await reset_n(tb.clk, tb.rst_n, cycles=5)
70
71
- data_len = random.randint(10, 100)
+ data_len = random.randint(10, 64)
72
test_data = [random.randint(0, 2**32 - 1) for _ in range(data_len)]
73
74
tb.log.info(f"Generated {data_len} dwords to transfer.")
0 commit comments