1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2024 Corigine, Inc. 3 * All rights reserved. 4 */ 5 6 #ifndef __NFP_RXTX_VEC_AVX2_H__ 7 #define __NFP_RXTX_VEC_AVX2_H__ 8 9 #include <stdbool.h> 10 11 bool nfp_net_get_avx2_supported(void); 12 13 uint16_t nfp_net_vec_avx2_recv_pkts(void *rx_queue, 14 struct rte_mbuf **rx_pkts, 15 uint16_t nb_pkts); 16 17 #endif /* __NFP_RXTX_VEC_AVX2_H__ */ 18