lib: remove librte_ prefix from directory names
[dpdk.git] / lib / fib / trie_avx512.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2020 Intel Corporation
3  */
4
5 #ifndef _TRIE_AVX512_H_
6 #define _TRIE_AVX512_H_
7
8 void
9 rte_trie_vec_lookup_bulk_2b(void *p, uint8_t ips[][RTE_FIB6_IPV6_ADDR_SIZE],
10         uint64_t *next_hops, const unsigned int n);
11
12 void
13 rte_trie_vec_lookup_bulk_4b(void *p, uint8_t ips[][RTE_FIB6_IPV6_ADDR_SIZE],
14         uint64_t *next_hops, const unsigned int n);
15
16 void
17 rte_trie_vec_lookup_bulk_8b(void *p, uint8_t ips[][RTE_FIB6_IPV6_ADDR_SIZE],
18         uint64_t *next_hops, const unsigned int n);
19
20 #endif /* _TRIE_AVX512_H_ */