Home
last modified time | relevance | path

Searched refs:TFE_Profiler (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/c/eager/
Dc_api_experimental.h35 typedef struct TFE_Profiler TFE_Profiler; typedef
37 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,
Dc_api_experimental.cc29 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()
Dc_api_experimental_test.cc46 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()
Dc_api_internal.h126 struct TFE_Profiler { struct
127 TFE_Profiler(TFE_ProfilerContext* ctx) { in TFE_Profiler() function