mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
20 lines
278 B
C
20 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
|
|
|