From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH v5 2/3] doc: add sw eventdev pipeline to sample app ug Date: Mon, 3 Jul 2017 11:07:01 +0530 Message-ID: <20170703053659.GB6275@jerin> References: <1498751388-41571-2-git-send-email-david.hunt@intel.com> <1498830673-56759-1-git-send-email-david.hunt@intel.com> <1498830673-56759-3-git-send-email-david.hunt@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, harry.van.haaren@intel.com To: David Hunt Return-path: Received: from NAM01-BN3-obe.outbound.protection.outlook.com (mail-bn3nam01on0044.outbound.protection.outlook.com [104.47.33.44]) by dpdk.org (Postfix) with ESMTP id 42A68374F for ; Mon, 3 Jul 2017 07:37:20 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1498830673-56759-3-git-send-email-david.hunt@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > > From: Harry van Haaren > > Adi a new entry in the sample app user-guides, > which details the working of the eventdev_pipeline_sw. > > Signed-off-by: Harry van Haaren > Signed-off-by: David Hunt > --- > doc/guides/sample_app_ug/eventdev_pipeline_sw.rst | 190 ++++++++++++++++++++++ > doc/guides/sample_app_ug/index.rst | 1 + > 2 files changed, 191 insertions(+) > create mode 100644 doc/guides/sample_app_ug/eventdev_pipeline_sw.rst > > diff --git a/doc/guides/sample_app_ug/eventdev_pipeline_sw.rst b/doc/guides/sample_app_ug/eventdev_pipeline_sw.rst > new file mode 100644 > index 0000000..65c33a8 > --- /dev/null > +++ b/doc/guides/sample_app_ug/eventdev_pipeline_sw.rst > @@ -0,0 +1,190 @@ > + > + > +Eventdev Pipeline SW Sample Application Eventdev Pipeline SW PMD Sample Application > +======================================= > + > +The eventdev pipeline sample application is a sample app that demonstrates > +the usage of the eventdev API using the software PMD. It shows how an > +application can configure a pipeline and assign a set of worker cores to > +perform the processing required. > + > +The application has a range of command line arguments allowing it to be > +configured for various numbers worker cores, stages,queue depths and cycles per > +stage of work. This is useful for performance testing as well as quickly testing > +a particular pipeline configuration. > + > + > +statistics that the PMD provides. The statistics provided depend on the PMD > +used, see the Event Device Drivers section for a list of eventdev PMDs. > diff --git a/doc/guides/sample_app_ug/index.rst b/doc/guides/sample_app_ug/index.rst > index 02611ef..90be36a 100644 > --- a/doc/guides/sample_app_ug/index.rst > +++ b/doc/guides/sample_app_ug/index.rst > @@ -69,6 +69,7 @@ Sample Applications User Guides > netmap_compatibility > ip_pipeline > test_pipeline > + eventdev_pipeline_sw eventdev_pipeline_sw_pmd > dist_app > vm_power_management > tep_termination With above changes: Acked-by: Jerin Jacob