numam-dpdk/lib/librte_acl/acl_run_avx2.c
Bruce Richardson 369991d997 lib: use SPDX tag for Intel copyright files
Replace the BSD license header with the SPDX tag for files
with only an Intel copyright on them.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2018-01-04 22:41:39 +01:00

26 lines
758 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
*/
#include "acl_run_avx2.h"
/*
* Note, that to be able to use AVX2 classify method,
* both compiler and target cpu have to support AVX2 instructions.
*/
int
rte_acl_classify_avx2(const struct rte_acl_ctx *ctx, const uint8_t **data,
uint32_t *results, uint32_t num, uint32_t categories)
{
if (likely(num >= MAX_SEARCHES_AVX16))
return search_avx2x16(ctx, data, results, num, categories);
else if (num >= MAX_SEARCHES_SSE8)
return search_sse_8(ctx, data, results, num, categories);
else if (num >= MAX_SEARCHES_SSE4)
return search_sse_4(ctx, data, results, num, categories);
else
return rte_acl_classify_scalar(ctx, data, results, num,
categories);
}