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 E4EB2FAC0 for ; Mon, 27 Mar 2017 13:26:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490613975; x=1522149975; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=t+1wqqlrxD+vKbTVEzDXKeLei2g+LyPZe6jE3h7VZpc=; b=OXLxjWCGhCSNo7CEUgebjdz2NCd8MgrvSc+cjF7aMFPixLsHQkpMN2MJ QmCoJoIXxplqbbQVIKBkjbdtV3aWFQ==; Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Mar 2017 04:26:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,231,1486454400"; d="scan'208";a="79709320" Received: from silpixa00381631.ir.intel.com (HELO silpixa00381631.ger.corp.intel.com) ([10.237.222.122]) by orsmga005.jf.intel.com with ESMTP; 27 Mar 2017 04:26:13 -0700 From: Pablo de Lara To: declan.doherty@intel.com Cc: dev@dpdk.org, Pablo de Lara Date: Mon, 27 Mar 2017 12:25:57 +0100 Message-Id: <1490613966-74180-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1488557592-46193-1-git-send-email-pablo.de.lara.guarch@intel.com> References: <1488557592-46193-1-git-send-email-pablo.de.lara.guarch@intel.com> Subject: [dpdk-dev] [PATCH v2 0/9] 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: Mon, 27 Mar 2017 11:26:16 -0000 This patchset makes the following changes in the crypto-perf app: - Adds the option to run performance tests on different buffer and burst sizes, in a single run, instead of having to run the application several times. - Cleans up the application, by removing unused functions and separating the verify option in a new test type - Fixes several issues in the application (such as wrong test vectors) Pablo de Lara (8): app/crypto-perf: remove cyclecount test type app/crypto-perf: remove unused file app/crypto-perf: fix AES CBC 128 test vectors app/crypto-perf: do not append digest if not used app/crypto-perf: display results in test runner app/crypto-perf: add range/list of sizes app/crypto-perf: add extra option checks app/crypto-perf: reorg options structure 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 | 35 +- app/test-crypto-perf/cperf_options_parsing.c | 308 ++++++++++-- app/test-crypto-perf/cperf_test_latency.c | 508 ++++++++------------ 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 | 579 +++++++++++++++++++++++ app/test-crypto-perf/cperf_test_verify.h | 58 +++ app/test-crypto-perf/cperf_verify_parser.c | 314 ------------ app/test-crypto-perf/data/aes_cbc_128_sha.data | 439 +++++++++-------- app/test-crypto-perf/main.c | 71 ++- doc/guides/tools/cryptoperf.rst | 27 +- 15 files changed, 1592 insertions(+), 1295 deletions(-) create mode 100644 app/test-crypto-perf/cperf_test_verify.c create mode 100644 app/test-crypto-perf/cperf_test_verify.h delete mode 100644 app/test-crypto-perf/cperf_verify_parser.c -- 2.7.4