return 1
return result
-# multiply given number for all sockets
-# e.g. 32 becomes 32,32 or 32,32,32,32 etc.
+# spread given number for all sockets
+# e.g. 32 becomes 16,16 or 8,8,8,8 etc.
def all_sockets(num):
mem_per_socket = num / num_sockets()
return ",".join([str(mem_per_socket)] * num_sockets())
},
{
"Prefix": "group_3",
- "Memory" : all_sockets(256),
+ "Memory" : all_sockets(1024),
"Tests" :
[
{
]
},
{
- "Prefix": "ring_perf",
+ "Prefix": "timer_perf",
"Memory" : all_sockets(512),
"Tests" :
[
{
- "Name" : "Ring performance autotest",
- "Command" : "ring_perf_autotest",
+ "Name" : "Timer performance autotest",
+ "Command" : "timer_perf_autotest",
"Func" : default_autotest,
"Report" : None,
},
]
},
+
+#
+# Please always make sure that ring_perf is the last test!
+#
{
- "Prefix": "timer_perf",
+ "Prefix": "ring_perf",
"Memory" : all_sockets(512),
"Tests" :
[
{
- "Name" : "Timer performance autotest",
- "Command" : "timer_perf_autotest",
+ "Name" : "Ring performance autotest",
+ "Command" : "ring_perf_autotest",
"Func" : default_autotest,
"Report" : None,
},