From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id A54F75B1E for ; Fri, 2 Nov 2018 10:44:07 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Nov 2018 02:44:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,455,1534834800"; d="scan'208";a="104833936" Received: from tjozwiax-mobl.ger.corp.intel.com (HELO localhost.localdomain) ([10.103.104.44]) by orsmga001.jf.intel.com with ESMTP; 02 Nov 2018 02:44:04 -0700 From: Tomasz Jozwiak To: dev@dpdk.org, fiona.trahe@intel.com, tomaszx.jozwiak@intel.com, Shally.Verma@cavium.com, akhil.goyal@nxp.com Date: Fri, 2 Nov 2018 10:43:59 +0100 Message-Id: <1541151842-8746-1-git-send-email-tomaszx.jozwiak@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1538400427-20164-1-git-send-email-tomaszx.jozwiak@intel.com> References: <1538400427-20164-1-git-send-email-tomaszx.jozwiak@intel.com> Subject: [dpdk-dev] [PATCH v2 0/3] add initial version of compress-perf 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, 02 Nov 2018 09:44:08 -0000 This patchset adds initial version of compression performance test. v2 changes: - Added release note - Added new cleanup flow into main function - Blocked dynamic compression test because it hasn't been tested enough - Changed `--max-num-sgl-segs' default value to 16 - Updated documentation Opens: comment from Shally Verma re separating validation from benchmarking will be investigated in a later release. Support for dynamic Huffman encoding will be added in a later release. Tomasz Jozwiak (3): app/compress-perf: add parser app/compress-perf: add performance measurement doc/guides/tools: add doc files MAINTAINERS | 5 + app/Makefile | 4 + app/meson.build | 1 + app/test-compress-perf/Makefile | 16 + app/test-compress-perf/comp_perf_options.h | 59 ++ app/test-compress-perf/comp_perf_options_parse.c | 592 +++++++++++++++ app/test-compress-perf/main.c | 928 +++++++++++++++++++++++ app/test-compress-perf/meson.build | 7 + config/common_base | 5 + doc/guides/rel_notes/release_18_11.rst | 6 + doc/guides/tools/comp_perf.rst | 75 ++ 11 files changed, 1698 insertions(+) create mode 100644 app/test-compress-perf/Makefile create mode 100644 app/test-compress-perf/comp_perf_options.h create mode 100644 app/test-compress-perf/comp_perf_options_parse.c create mode 100644 app/test-compress-perf/main.c create mode 100644 app/test-compress-perf/meson.build create mode 100644 doc/guides/tools/comp_perf.rst -- 2.7.4