app/crypto-perf: add script to graph perf resultsThe python script introduced in this patch runs the crypto performancetest application for various test cases, and graphs the results.Test cases
app/crypto-perf: add script to graph perf resultsThe python script introduced in this patch runs the crypto performancetest application for various test cases, and graphs the results.Test cases are defined in config JSON files, this is where parametersare specified for each test. Currently there are various test cases fordevices crypto_qat, crypto_aesni_mb and crypto_gcm. Tests for theptest types Throughput and Latency are supported for each.The results of each test case are graphed and saved in PDFs (one PDF foreach test suite graph type, with all test cases).The graphs output include various grouped barcharts for throughputtests, and histogram and boxplot graphs are used for latency tests.Documentation is added to outline the configuration and usage for thescript.Usage:A JSON config file must be specified when running the script, "./dpdk-graph-crypto-perf <config_file>"The script uses the installed app by default (from ninja install).Alternatively we can pass path to app by "-f <rel_path>/<build_dir>/app/dpdk-test-crypto-perf"All device test suites are run by default.Alternatively we can specify by adding arguments, "-t latency" - to run latency test suite only "-t throughput latency" - to run both throughput and latency test suitesA directory can be specified for all output files,or the script directory is used by default. "-o <output_dir>"To see the output from the dpdk-test-crypto-perf app,use the verbose option "-v".Signed-off-by: Ciara Power <[email protected]>Acked-by: Declan Doherty <[email protected]>Acked-by: Adam Dybkowski <[email protected]>
show more ...