tests: Changed percent atomics to 0 in memtest to fix daily test (#477)

This commit is contained in:
Harshil Patel
2023-10-18 10:09:45 -07:00
committed by GitHub
parent 334df18dce
commit 7bd0b99635

View File

@@ -63,7 +63,7 @@ class MemTest(ClockedObject):
percent_reads = Param.Percent(65, "Percentage reads")
percent_functional = Param.Percent(50, "Percentage functional accesses")
percent_uncacheable = Param.Percent(10, "Percentage uncacheable")
percent_atomic = Param.Percent(50, "Percentage atomics")
percent_atomic = Param.Percent(0, "Percentage atomics")
# Determine how often to print progress messages and what timeout
# to use for checking progress of both requests and responses