From patchwork Thu Sep 10 18:58:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "Ma, LihongX" X-Patchwork-Id: 77303 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0E4ACA04B5; Fri, 11 Sep 2020 04:32:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 02A061C0CE; Fri, 11 Sep 2020 04:32:26 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 42B89DE0 for ; Fri, 11 Sep 2020 04:32:24 +0200 (CEST) IronPort-SDR: a43JntVvVejICeOVt2BR3GTI+mIRY92+soI0utUM+tJ/73Sb8g00rYXJWvKCX7pRaZsIW6Ykl6 aAbD/Tub6Jnw== X-IronPort-AV: E=McAfee;i="6000,8403,9740"; a="158714519" X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="158714519" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2020 19:32:23 -0700 IronPort-SDR: VNbERSOMi5BuMg6/DArQR8mGHdisKHVbYzEnBbAVhW+r1VSxLXSyOXWnvLNlwZTN8JqwSLuS/t xG25g1KdyOZA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="329592621" Received: from dpdk-lihong-ub1604.sh.intel.com ([10.67.118.174]) by fmsmga004.fm.intel.com with ESMTP; 10 Sep 2020 19:32:23 -0700 From: LihongX Ma To: dts@dpdk.org Cc: LihongX Ma Date: Fri, 11 Sep 2020 02:58:55 +0800 Message-Id: <1599764335-1164-3-git-send-email-lihongx.ma@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1599764335-1164-1-git-send-email-lihongx.ma@intel.com> References: <1599764335-1164-1-git-send-email-lihongx.ma@intel.com> MIME-Version: 1.0 Subject: [dts] [PATCH V1 2/2] doc: add the required python lib - threadpool X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" As use the python default threadpool to maintain the pool of worker threads, so the python lib threadpool is required when run dts. Signed-off-by: LihongX Ma --- doc/dts_gsg/sys_reqs.rst | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/dts_gsg/sys_reqs.rst b/doc/dts_gsg/sys_reqs.rst index 77022e2..1e20b99 100644 --- a/doc/dts_gsg/sys_reqs.rst +++ b/doc/dts_gsg/sys_reqs.rst @@ -59,6 +59,7 @@ Python Module “pexpect”: this module provides API to automate interactive SS Python Module “docutils”: Docutils is a modular system for processing documentation into useful formats, such as HTML, XML, and LaTeX. Python Module “pcapy”: Pcapy is a Python extension module that interfaces with the libpcap packet capture library. Pcapy enables python scripts to capture packets on the network. Python Module “xlrd”: Xlrd is a Python module that extracts data from Excel spreadsheets. +Python Module “threadpool”: Threadpool is a Python module that maintains a pool of worker threads to perform time consuming operations in parallel. Please see installation instruction as the following: diff --git a/requirements.txt b/requirements.txt index 59b3d8e..cb9f636 100644 --- a/requirements.txt +++ b/requirements.txt @@ -37,3 +37,4 @@ docutils pcapy xlrd scapy==2.4.3 +threadpool