Files
kernels/benchmarks/opencl/spmv/perfmon.h
Blaise Tine ea53554215 spmv
2019-11-25 11:39:19 -05:00

21 lines
278 B
C

#ifndef MXPA_RUNTIME_PERF_MONITOR
#define MXPA_RUNTIME_PERF_MONITOR
#include "perf_util.h"
#ifdef __cplusplus
extern "C" {
#endif
void perf_init();
void perf_start(const char* kname);
void perf_end(const char* kname);
void perf_fini();
#ifdef __cplusplus
};
#endif
#endif