> -----Original Message----- > From: [email protected] <[email protected]> > Sent: Monday, November 14, 2022 5:32 PM > To: [email protected]; Thomas Monjalon <[email protected]>; Bruce > Richardson <[email protected]>; Srikanth Yalavarthi > <[email protected]> > Cc: [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > [email protected]; Devendra Singh Rawat <[email protected]>; > [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > Harman Kalra <[email protected]>; [email protected]; > [email protected]; [email protected]; [email protected]; Igor > Russkikh <[email protected]>; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; Kiran Kumar Kokkilagadda > <[email protected]>; [email protected]; Liron Himi > <[email protected]>; [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > Pradeep Kumar Nalla <[email protected]>; Nithin Kumar Dabilpuram > <[email protected]>; [email protected]; > [email protected]; Radha Chintakuntla <[email protected]>; > [email protected]; Rasesh Mody <[email protected]>; > [email protected]; [email protected]; Satha Koteswara Rao > Kottidi <[email protected]>; Shahed Shaikh > <[email protected]>; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; Sunil Kumar Kori <[email protected]>; > [email protected]; Veerasenareddy Burru <[email protected]>; > [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; Prasun Kapoor > <[email protected]>; Nadav Haklai <[email protected]>; Satananda > Burla <[email protected]>; Narayana Prasad Raju Athreya > <[email protected]>; Akhil Goyal <[email protected]>; > [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; > [email protected]; [email protected]; Ashwin Sekhar T K > <[email protected]>; Pavan Nikhilesh Bhagavatula > <[email protected]>; [email protected]; Derek Chickles > <[email protected]>; Shivah Shankar Shankar Narayan Rao > <[email protected]>; Jerin Jacob Kollanukkaran > <[email protected]> > Subject: [dpdk-dev] [PATCH v1 01/12] mldev: introduce machine learning > device library > > From: Jerin Jacob <[email protected]> > > Add mldev API specification to standardize and use the machine learning > device and inference operations in vendor neutral way. > > Following operations are abstracted through APIs > > - ML device capability probe > - ML device configuration > - ML device queue pair configuration > - ML device state management > - ML device stat/xstat operations > - ML model load/unload/start/stop operations > - ML model information probe > - ML IO operations to find size for input and output buffers > - ML quantize and dequantize operations > - ML ops pool creation and free operations > - ML device enqueue/dequeue fastpath interference operations > > Also added programming guide. > > Signed-off-by: Jerin Jacob <[email protected]> > Signed-off-by: Srikanth Yalavarthi <[email protected]> > --- > MAINTAINERS | 5 + > config/rte_config.h | 3 + > doc/api/doxy-api-index.md | 1 + > doc/api/doxy-api.conf.in | 1 + > doc/guides/prog_guide/img/mldev_flow.svg | 714 ++++++++++++++ > doc/guides/prog_guide/index.rst | 1 + > doc/guides/prog_guide/mldev.rst | 186 ++++ > lib/eal/common/eal_common_log.c | 1 + > lib/eal/include/rte_log.h | 1 + > lib/meson.build | 1 + > lib/mldev/meson.build | 18 + > lib/mldev/rte_mldev.c | 5 + > lib/mldev/rte_mldev.h | 1092 ++++++++++++++++++++++ > lib/mldev/version.map | 3 + > 14 files changed, 2032 insertions(+) > create mode 100644 doc/guides/prog_guide/img/mldev_flow.svg > create mode 100644 doc/guides/prog_guide/mldev.rst > create mode 100644 lib/mldev/meson.build > create mode 100644 lib/mldev/rte_mldev.c > create mode 100644 lib/mldev/rte_mldev.h > create mode 100644 lib/mldev/version.map > Acked-by: Shivah Shankar S <[email protected]>
RE: [dpdk-dev] [PATCH v1 01/12] mldev: introduce machine learning device library
Shivah Shankar Shankar Narayan Rao Wed, 01 Feb 2023 21:29:35 -0800
- RE: [dpdk-dev] [PATCH v1 01/12] mldev: ... Shivah Shankar Shankar Narayan Rao
- RE: [dpdk-dev] [PATCH v1 01/12] ml... Shivah Shankar Shankar Narayan Rao
- Re: [dpdk-dev] [PATCH v1 01/12... Stephen Hemminger
- Re: [dpdk-dev] [PATCH v1 0... Thomas Monjalon
- Re: [dpdk-dev] [PATCH ... Stephen Hemminger
- Re: [dpdk-dev] [P... Thomas Monjalon
- Re: [dpdk-dev... Stephen Hemminger
- Re: [dpdk... Thomas Monjalon
- Re: [dpdk... Stephen Hemminger
- Re: [dpdk-dev] [PATCH v1 0... Jerin Jacob
- Re: [dpdk-dev] [PATCH v1 01/12... Stephen Hemminger

