From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 5A35FD4CE for ; Fri, 3 Mar 2017 17:11:07 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Mar 2017 08:11:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,237,1484035200"; d="scan'208";a="1118073385" Received: from silpixa00381631.ir.intel.com (HELO silpixa00381631.ger.corp.intel.com) ([10.237.222.122]) by fmsmga001.fm.intel.com with ESMTP; 03 Mar 2017 08:11:05 -0800 From: Pablo de Lara To: declan.doherty@intel.com Cc: dev@dpdk.org, Pablo de Lara Date: Fri, 3 Mar 2017 16:13:09 +0000 Message-Id: <1488557592-46193-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH 0/3] Crypto performance app improvements X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Mar 2017 16:11:07 -0000 With this patchset, user will be able to run performance tests on different buffer and burst sizes, in a single run, instead of having to run the application several times. Also, the verify option has been removed and, instead, a new verify test has been created, to simplify the throughput and latency tests. Pablo de Lara (2): app/crypto-perf: do not append digest if not used app/crypto-perf: add range/list of sizes Sergio Gonzalez Monroy (1): app/crypto-perf: move verify as single test type app/test-crypto-perf/Makefile | 1 + app/test-crypto-perf/cperf_ops.c | 20 +- app/test-crypto-perf/cperf_ops.h | 5 - app/test-crypto-perf/cperf_options.h | 34 +- app/test-crypto-perf/cperf_options_parsing.c | 252 ++++++++-- app/test-crypto-perf/cperf_test_latency.c | 517 ++++++++------------ app/test-crypto-perf/cperf_test_throughput.c | 502 +++++++------------- app/test-crypto-perf/cperf_test_vector_parsing.c | 12 +- app/test-crypto-perf/cperf_test_vectors.c | 8 +- app/test-crypto-perf/cperf_test_verify.c | 576 +++++++++++++++++++++++ app/test-crypto-perf/cperf_test_verify.h | 58 +++ app/test-crypto-perf/cperf_verify_parser.c | 4 +- app/test-crypto-perf/main.c | 59 ++- doc/guides/tools/cryptoperf.rst | 27 +- 14 files changed, 1314 insertions(+), 761 deletions(-) create mode 100644 app/test-crypto-perf/cperf_test_verify.c create mode 100644 app/test-crypto-perf/cperf_test_verify.h -- 2.7.4