Searched refs:TFE_Profiler (Results 1 – 4 of 4) sorted by relevance
35 typedef struct TFE_Profiler TFE_Profiler; typedef37 TF_CAPI_EXPORT extern TFE_Profiler* TFE_NewProfiler(TFE_ProfilerContext* ctx);38 TF_CAPI_EXPORT extern bool TFE_ProfilerIsOk(TFE_Profiler* profiler);39 TF_CAPI_EXPORT extern void TFE_DeleteProfiler(TFE_Profiler* profiler);44 TFE_Profiler* profiler,
29 TFE_Profiler* TFE_NewProfiler(TFE_ProfilerContext* ctx) { in TFE_NewProfiler()30 return new TFE_Profiler(ctx); in TFE_NewProfiler()33 bool TFE_ProfilerIsOk(TFE_Profiler* profiler) { in TFE_ProfilerIsOk()37 void TFE_DeleteProfiler(TFE_Profiler* profiler) { delete profiler; } in TFE_DeleteProfiler()39 void TFE_ProfilerSerializeToString(TFE_Context* ctx, TFE_Profiler* profiler, in TFE_ProfilerSerializeToString()
46 TFE_Profiler* profiler = TFE_NewProfiler(profiler_context); in ExecuteWithProfiling()117 TFE_Profiler* profiler1 = TFE_NewProfiler(profiler_context); in TEST()120 TFE_Profiler* profiler2 = TFE_NewProfiler(profiler_context); in TEST()
126 struct TFE_Profiler { struct127 TFE_Profiler(TFE_ProfilerContext* ctx) { in TFE_Profiler() function