forked from OpenDataPlane/odp-dpdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux-dpdk: ml: implement on top of mldev
Add ML implementation, which utilizes DPDK's mldev. Current limitations: - Only uses a single device. - Only a single inference at a time per model. - Inference is always synchronous, regardless of completion mode. Signed-off-by: Jere Leppänen <[email protected]>
- Loading branch information
1 parent
ae375ef
commit f1d2b55
Showing
6 changed files
with
2,276 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
########################################################################## | ||
# DPDK ML API | ||
########################################################################## | ||
ml_support=yes | ||
AC_ARG_ENABLE([dpdk-ml], | ||
[AS_HELP_STRING([--disable-dpdk-ml], | ||
[disable ML support] | ||
[[default=enabled] (linux-dpdk)])], | ||
[if test "x$enableval" = "xno"; then | ||
ml_support=no | ||
fi]) | ||
|
||
AC_CONFIG_COMMANDS_PRE([dnl | ||
AM_CONDITIONAL([WITH_ML], [test x$ml_support = xyes]) | ||
]) |
Oops, something went wrong.