dpdk/app/test-compress-perf/comp_perf_test_cyclecount.h
<<
>>
Prefs
   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
  14void
  15cperf_cyclecount_test_destructor(void *arg);
  16
  17int
  18cperf_cyclecount_test_runner(void *test_ctx);
  19
  20void *
  21cperf_cyclecount_test_constructor(uint8_t dev_id, uint16_t qp_id,
  22                struct comp_test_data *options);
  23
  24#endif
  25