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