xref: /dpdk/app/test-compress-perf/comp_perf_test_cyclecount.h (revision 2695db95a1474e07d0105d31b9c52562dc6fb89a)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4 
5 #ifndef _COMP_PERF_TEST_CYCLECOUNT_
6 #define _COMP_PERF_TEST_CYCLECOUNT_
7 
8 #include <stdint.h>
9 
10 #include "comp_perf_options.h"
11 #include "comp_perf_test_common.h"
12 #include "comp_perf_test_verify.h"
13 
14 void
15 cperf_cyclecount_test_destructor(void *arg);
16 
17 int
18 cperf_cyclecount_test_runner(void *test_ctx);
19 
20 void *
21 cperf_cyclecount_test_constructor(uint8_t dev_id, uint16_t qp_id,
22 		struct comp_test_data *options);
23 
24 #endif
25