xref: /dpdk/lib/fib/dir24_8_avx512.h (revision daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2020 Intel Corporation
3  */
4 
5 #ifndef _DIR248_AVX512_H_
6 #define _DIR248_AVX512_H_
7 
8 void
9 rte_dir24_8_vec_lookup_bulk_1b(void *p, const uint32_t *ips,
10 	uint64_t *next_hops, const unsigned int n);
11 
12 void
13 rte_dir24_8_vec_lookup_bulk_2b(void *p, const uint32_t *ips,
14 	uint64_t *next_hops, const unsigned int n);
15 
16 void
17 rte_dir24_8_vec_lookup_bulk_4b(void *p, const uint32_t *ips,
18 	uint64_t *next_hops, const unsigned int n);
19 
20 void
21 rte_dir24_8_vec_lookup_bulk_8b(void *p, const uint32_t *ips,
22 	uint64_t *next_hops, const unsigned int n);
23 
24 #endif /* _DIR248_AVX512_H_ */
25