From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id DA9B6D4A6 for ; Wed, 29 Mar 2017 17:25:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490801107; x=1522337107; h=subject:to:references:cc:from:message-id:date: mime-version:in-reply-to:content-transfer-encoding; bh=f3Q0/7EumBotmMHCPINPoZUbzxPKiOoiNSNuqltO8vM=; b=o3Dbx/5klpP+Md8CfdUgbGyOqjeUESOZDnzyNojx/sx40QnN3bohB/C8 WteCcV4d1EsfMa2iI02nyCHvwGUXpA==; Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Mar 2017 08:24:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,241,1486454400"; d="scan'208";a="71612021" Received: from smonroyx-mobl.ger.corp.intel.com (HELO [10.237.221.23]) ([10.237.221.23]) by orsmga004.jf.intel.com with ESMTP; 29 Mar 2017 08:24:45 -0700 To: "De Lara Guarch, Pablo" , "Doherty, Declan" References: <1488557592-46193-1-git-send-email-pablo.de.lara.guarch@intel.com> <1490613966-74180-1-git-send-email-pablo.de.lara.guarch@intel.com> Cc: "dev@dpdk.org" From: Sergio Gonzalez Monroy Message-ID: <7292c027-f127-2c12-b211-5829a0b72341@intel.com> Date: Wed, 29 Mar 2017 16:24:45 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [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: Wed, 29 Mar 2017 15:25:07 -0000 On 27/03/2017 13:29, De Lara Guarch, Pablo wrote: > >> -----Original Message----- >> From: De Lara Guarch, Pablo >> Sent: Monday, March 27, 2017 12:26 PM >> To: Doherty, Declan >> Cc: dev@dpdk.org; De Lara Guarch, Pablo >> Subject: [PATCH v2 0/9] Crypto performance app improvements >> >> 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 > Changes in v2: > - Split previous third patch into new four patches (6-9) > - Removed unused functions > - Fixed AES CBC 128 test vectors > Acked-by: Sergio Gonzalez Monroy