test/hash: report non HTM numbers for single thread
In hash_readwrite_perf_autotest a single read and write operation is benchmarked for both HTM and non HTM cases. However the result summary only shows the HTM value. Therefore add the non HTM value for completeness. Fixes: 0eb3726ebcf1 ("test/hash: add test for read/write concurrency") Signed-off-by: Stanislaw Kardach <kda@semihalf.com> Acked-by: Yipeng Wang <yipeng1.wang@intel.com>
This commit is contained in:
parent
36db4a1ad4
commit
af0892af42
@ -664,8 +664,12 @@ test_hash_rw_perf_main(void)
|
||||
printf("Results summary:\n");
|
||||
printf("================\n");
|
||||
|
||||
printf("single read: %u\n", htm_results.single_read);
|
||||
printf("single write: %u\n", htm_results.single_write);
|
||||
printf("HTM:\n");
|
||||
printf(" single read: %u\n", htm_results.single_read);
|
||||
printf(" single write: %u\n", htm_results.single_write);
|
||||
printf("non HTM:\n");
|
||||
printf(" single read: %u\n", non_htm_results.single_read);
|
||||
printf(" single write: %u\n", non_htm_results.single_write);
|
||||
for (i = 0; i < NUM_TEST; i++) {
|
||||
printf("+++ core_cnt: %u +++\n", core_cnt[i]);
|
||||
printf("HTM:\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user