From: Ciara Power <ciara.power@intel.com> To: dev@dpdk.org Cc: declan.doherty@intel.com, akhil.goyal@nxp.com, Ciara Power <ciara.power@intel.com> Subject: [dpdk-dev] [PATCH 2/4] test/cryptodev: improve csv output for perf tests Date: Fri, 11 Dec 2020 17:31:12 +0000 Message-ID: <20201211173114.1924772-3-ciara.power@intel.com> (raw) In-Reply-To: <20201211173114.1924772-1-ciara.power@intel.com> The csv outputs for performance tests were not easily consumed, due to unnecessary whitespaces and capitals. The delimiter is modified to now be "," instead of ";" which was present in some cases. Some unnecessary values were also removed from the output. Signed-off-by: Ciara Power <ciara.power@intel.com> --- app/test-crypto-perf/cperf_test_latency.c | 13 +++++-------- app/test-crypto-perf/cperf_test_throughput.c | 12 ++++++------ 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/app/test-crypto-perf/cperf_test_latency.c b/app/test-crypto-perf/cperf_test_latency.c index c2590a4dcf..f3c09b8c1c 100644 --- a/app/test-crypto-perf/cperf_test_latency.c +++ b/app/test-crypto-perf/cperf_test_latency.c @@ -309,18 +309,15 @@ cperf_latency_test_runner(void *arg) if (ctx->options->csv) { if (rte_atomic16_test_and_set(&display_once)) - printf("\n# lcore, Buffer Size, Burst Size, Pakt Seq #, " - "cycles, time (us)"); + printf("\n#buffer_size(b),burst_size,time(us)"); for (i = 0; i < ctx->options->total_ops; i++) { - printf("\n%u;%u;%u;%"PRIu64";%"PRIu64";%.3f", - ctx->lcore_id, ctx->options->test_buffer_size, - test_burst_size, i + 1, - ctx->res[i].tsc_end - ctx->res[i].tsc_start, + printf("\n%u,%u,%.3f", + ctx->options->test_buffer_size, + test_burst_size, tunit * (double) (ctx->res[i].tsc_end - - ctx->res[i].tsc_start) - / tsc_hz); + - ctx->res[i].tsc_start) / tsc_hz); } } else { diff --git a/app/test-crypto-perf/cperf_test_throughput.c b/app/test-crypto-perf/cperf_test_throughput.c index f30f7d5c2c..a841a890b9 100644 --- a/app/test-crypto-perf/cperf_test_throughput.c +++ b/app/test-crypto-perf/cperf_test_throughput.c @@ -294,13 +294,13 @@ cperf_throughput_test_runner(void *test_ctx) cycles_per_packet); } else { if (rte_atomic16_test_and_set(&display_once)) - printf("#lcore id,Buffer Size(B)," - "Burst Size,Enqueued,Dequeued,Failed Enq," - "Failed Deq,Ops(Millions),Throughput(Gbps)," - "Cycles/Buf\n\n"); + printf("#lcore_id,buffer_size(b)," + "burst_size,enqueued,dequeued,failed_enq," + "failed_deq,ops(millions),throughput(gbps)," + "cycles_per_buf\n\n"); - printf("%u;%u;%u;%"PRIu64";%"PRIu64";%"PRIu64";%"PRIu64";" - "%.3f;%.3f;%.3f\n", + printf("%u,%u,%u,%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64"," + "%.3f,%.3f,%.3f\n", ctx->lcore_id, ctx->options->test_buffer_size, test_burst_size, -- 2.25.1
next prev parent reply other threads:[~2020-12-11 17:31 UTC|newest] Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-12-11 17:31 [dpdk-dev] [PATCH 0/4] add crypto perf test graphing script Ciara Power 2020-12-11 17:31 ` [dpdk-dev] [PATCH 1/4] test/cryptodev: fix latency test csv output Ciara Power 2020-12-11 17:31 ` Ciara Power [this message] 2021-01-11 15:43 ` [dpdk-dev] [PATCH 2/4] test/cryptodev: improve csv output for perf tests Doherty, Declan 2020-12-11 17:31 ` [dpdk-dev] [PATCH 3/4] usertools: add script to graph crypto perf results Ciara Power 2020-12-11 19:35 ` Stephen Hemminger 2021-01-11 16:03 ` Doherty, Declan 2020-12-11 17:31 ` [dpdk-dev] [PATCH 4/4] maintainers: update crypto perf app maintainers Ciara Power 2021-01-14 10:41 ` [dpdk-dev] [PATCH v2 0/4] add crypto perf test graphing script Ciara Power 2021-01-14 10:41 ` [dpdk-dev] [PATCH v2 1/4] test/cryptodev: fix latency test csv output Ciara Power 2021-01-15 9:42 ` Dybkowski, AdamX 2021-01-14 10:41 ` [dpdk-dev] [PATCH v2 2/4] test/cryptodev: fix csv output format Ciara Power 2021-01-15 9:42 ` Dybkowski, AdamX 2021-01-14 10:41 ` [dpdk-dev] [PATCH v2 3/4] usertools: add script to graph crypto perf results Ciara Power 2021-01-15 9:43 ` Dybkowski, AdamX 2021-01-14 10:41 ` [dpdk-dev] [PATCH v2 4/4] maintainers: update crypto perf app maintainers Ciara Power 2021-01-15 10:13 ` Dybkowski, AdamX 2021-01-15 8:31 ` [dpdk-dev] [PATCH v2 0/4] add crypto perf test graphing script Doherty, Declan 2021-01-15 15:54 ` Akhil Goyal 2021-01-19 17:31 ` Thomas Monjalon 2021-01-19 17:34 ` Akhil Goyal 2021-01-20 17:29 ` [dpdk-dev] [PATCH v3 " Ciara Power 2021-01-20 17:29 ` [dpdk-dev] [PATCH v3 1/4] test/cryptodev: fix latency test csv output Ciara Power 2021-01-20 17:29 ` [dpdk-dev] [PATCH v3 2/4] test/cryptodev: fix csv output format Ciara Power 2021-01-20 17:29 ` [dpdk-dev] [PATCH v3 3/4] test/cryptodev: add script to graph perf results Ciara Power 2021-01-20 17:29 ` [dpdk-dev] [PATCH v3 4/4] maintainers: update crypto perf app maintainers Ciara Power 2021-01-25 18:28 ` [dpdk-dev] [PATCH v3 0/4] add crypto perf test graphing script Akhil Goyal
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20201211173114.1924772-3-ciara.power@intel.com \ --to=ciara.power@intel.com \ --cc=akhil.goyal@nxp.com \ --cc=declan.doherty@intel.com \ --cc=dev@dpdk.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ https://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git