example/idxd_perf: Adjust the printing data spacing to make it beautiful

Like this:
IDXD_ChanID   Core      Transfers      Bandwidth     Failed     Miscompares
---------------------------------------------------------------------------
         0    0         7006937/s       13 MiB/s   35034688               0
===========================================================================
Total:                  7006937/s       13 MiB/s   35034688               0

Change-Id: I18b0538268ba56d79b77ca6659dc260ee115675c
Signed-off-by: Hailiang Wang <hailiangx.e.wang@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16100
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
This commit is contained in:
Hailiang Wang 2023-01-03 08:13:50 -05:00 committed by Tomasz Zawadzki
parent bf1deaffd5
commit cfd726a23f

View File

@ -687,7 +687,7 @@ dump_result(void)
struct idxd_chan_entry *t;
printf("\nIDXD_ChanID Core Transfers Bandwidth Failed Miscompares\n");
printf("------------------------------------------------------------------------\n");
printf("---------------------------------------------------------------------------\n");
while (worker != NULL) {
t = worker->ctx;
while (t) {
@ -700,7 +700,7 @@ dump_result(void)
total_miscompared += t->injected_miscompares;
if (xfer_per_sec) {
printf("%10d%5u%15" PRIu64 "/s%9" PRIu64 " MiB/s%7" PRIu64 " %11" PRIu64 "\n",
printf("%10d%5u%16" PRIu64 "/s%9" PRIu64 " MiB/s%11" PRIu64 " %15" PRIu64 "\n",
t->idxd_chan_id, worker->core, xfer_per_sec, bw_in_MiBps, t->xfer_failed,
t->injected_miscompares);
}
@ -714,8 +714,8 @@ dump_result(void)
total_bw_in_MiBps = (total_completed * g_xfer_size_bytes) /
(g_time_in_sec * 1024 * 1024);
printf("=========================================================================\n");
printf("Total:%25" PRIu64 "/s%9" PRIu64 " MiB/s%6" PRIu64 " %11" PRIu64"\n\n",
printf("===========================================================================\n");
printf("Total:%25" PRIu64 "/s%9" PRIu64 " MiB/s%11" PRIu64 " %15" PRIu64"\n\n",
total_xfer_per_sec, total_bw_in_MiBps, total_failed, total_miscompared);
return total_failed ? 1 : 0;