Add ability to select AVX512 classify algorithm.
Signed-off-by: Konstantin Ananyev <[email protected]>
---
Depends-on: series-12721 ("acl: introduce AVX512 classify methods")
doc/guides/sample_app_ug/l3_forward_access_ctrl.rst | 2 +-
examples/l3fwd-acl/main.c | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/doc/guides/sample_app_ug/l3_forward_access_ctrl.rst
b/doc/guides/sample_app_ug/l3_forward_access_ctrl.rst
index 80dd8ba008..6e4d17a2a8 100644
--- a/doc/guides/sample_app_ug/l3_forward_access_ctrl.rst
+++ b/doc/guides/sample_app_ug/l3_forward_access_ctrl.rst
@@ -253,7 +253,7 @@ where,
* --rule_ipv6 FILENAME: Specifies the IPv6 ACL and route rules file
* --alg=<val>: optional, ACL classify method to use, one of:
- ``scalar|sse|avx2|neon|altivec``
+ ``scalar|sse|avx2|neon|altivec|avx512x16|avx512x32``
* --enable-jumbo: optional, enables jumbo frames
diff --git a/examples/l3fwd-acl/main.c b/examples/l3fwd-acl/main.c
index c27d4025e8..cbb92abdb3 100644
--- a/examples/l3fwd-acl/main.c
+++ b/examples/l3fwd-acl/main.c
@@ -170,6 +170,14 @@ static const struct {
.name = "altivec",
.alg = RTE_ACL_CLASSIFY_ALTIVEC,
},
+ {
+ .name = "avx512x16",
+ .alg = RTE_ACL_CLASSIFY_AVX512X16,
+ },
+ {
+ .name = "avx512x32",
+ .alg = RTE_ACL_CLASSIFY_AVX512X32,
+ },
};
/***********************start of ACL part******************************/
--
2.17.1