Home
last modified time | relevance | path

Searched defs:profiler (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/tensorflow/tensorflow/lite/profiling/
Dprofiler_test.cc34 void SleepForQuarterSecond(tflite::Profiler* profiler) { in SleepForQuarterSecond()
39 void ChildFunction(tflite::Profiler* profiler) { in ChildFunction()
44 void ParentFunction(tflite::Profiler* profiler) { in ParentFunction()
52 BufferedProfiler profiler(1024); in TEST() local
59 BufferedProfiler profiler(1024); in TEST() local
73 BufferedProfiler profiler(1024); in TEST() local
113 Profiler* profiler = nullptr; in TEST() local
118 BufferedProfiler profiler(1024); in TEST() local
127 NoopProfiler profiler; in TEST() local
Droot_profiler.cc24 void RootProfiler::AddProfiler(Profiler* profiler) { in AddProfiler()
29 void RootProfiler::AddProfiler(std::unique_ptr<Profiler>&& profiler) { in AddProfiler()
46 for (auto* profiler : profilers_) { in BeginEvent() local
88 for (auto* profiler : profilers_) { in AddEvent() local
96 for (auto* profiler : profilers_) { in AddEventWithData() local
Dprofile_summarizer_test.cc109 BufferedProfiler profiler(1024); in TEST() local
131 BufferedProfiler profiler(1024); in TEST() local
175 BufferedProfiler profiler(1024); in TEST_F() local
202 BufferedProfiler profiler(1024); in TEST_F() local
/external/tensorflow/tensorflow/core/profiler/lib/
Dprofiler_collection.cc26 namespace profiler { namespace
34 for (auto& profiler : profilers_) { in Start() local
42 for (auto& profiler : profilers_) { in Stop() local
50 for (auto& profiler : profilers_) { in CollectData() local
Dprofiler_controller.cc27 namespace profiler { namespace
30 std::unique_ptr<ProfilerInterface> profiler) in ProfilerController()
Dprofiler_factory.cc28 namespace profiler { namespace
50 auto profiler = factory(options); in CreateProfilers() local
Dcontext_types.cc18 namespace profiler { namespace
/external/tensorflow/tensorflow/lite/core/api/
Dprofiler.h138 : profiler_(profiler), event_handle_(0) { in profiler_() argument
157 ScopedOperatorProfile(Profiler* profiler, const char* tag, int node_index) in ScopedOperatorProfile()
164 ScopedDelegateOperatorProfile(Profiler* profiler, const char* tag, in ScopedDelegateOperatorProfile()
174 ScopedRuntimeInstrumentationProfile(Profiler* profiler, const char* tag) in ScopedRuntimeInstrumentationProfile()
208 #define TFLITE_SCOPED_TAGGED_DEFAULT_PROFILE(profiler, tag) \ argument
212 #define TFLITE_SCOPED_TAGGED_OPERATOR_PROFILE(profiler, tag, node_index) \ argument
216 #define TFLITE_SCOPED_DELEGATE_OPERATOR_PROFILE(profiler, tag, node_index) \ argument
221 profiler, tag, event_metadata1, event_metadata2) \ argument
/external/tensorflow/tensorflow/c/experimental/pluggable_profiler/
Dpluggable_profiler.cc31 namespace profiler { namespace
45 Status ValidateTPProfiler(const TP_Profiler& profiler) { in ValidateTPProfiler()
66 CreatePluggableProfiler(const ProfileOptions& options, TP_Profiler profiler, in CreatePluggableProfiler()
115 PluggableProfiler(TP_ProfilerFns profiler_fns, TP_Profiler profiler) in PluggableProfiler()
123 PluggableProfilerFactory(TP_Profiler profiler, in PluggableProfilerFactory()
155 TP_Profiler profiler{TP_PROFILER_STRUCT_SIZE}; in InitPluginProfiler() local
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
DProfilerRegistry.java41 public void put(Profiler profiler) { in put()
42 put(profiler.getName(), profiler); in put() local
45 public void put(String name, Profiler profiler) { in put()
/external/armnn/src/armnn/test/
DProfilerTests.cpp20 size_t GetProfilerEventSequenceSize(armnn::IProfiler* profiler) in GetProfilerEventSequenceSize()
46 std::unique_ptr<armnn::IProfiler> profiler = std::make_unique<armnn::IProfiler>(); in RegisterUnregisterProfilerSingleThreadImpl() local
67 std::unique_ptr<armnn::IProfiler> profiler = std::make_unique<armnn::IProfiler>(); variable
220 std::unique_ptr<armnn::IProfiler> profiler = std::make_unique<armnn::IProfiler>(); variable
295 std::unique_ptr<armnn::IProfiler> profiler = std::make_unique<armnn::IProfiler>(); variable
379 std::unique_ptr<armnn::IProfiler> profiler = std::make_unique<armnn::IProfiler>(); variable
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
DProfilerTest.java41 Profiler profiler = new Profiler("SMOKE"); in testSmoke() local
54 Profiler profiler = new Profiler("BAS"); in testBasicProfiling() local
87 Profiler profiler = new Profiler("BAS"); in testNestedProfiling() local
/external/ruy/ruy/profiler/
DREADME.md22 ### How to instrument code
65 ### How to run the profiler
/external/pytorch/test/cpp/lite_interpreter_runtime/
Dtest_mobile_profiler.cpp58 KinetoEdgeCPUProfiler profiler( in TEST() local
112 KinetoEdgeCPUProfiler profiler( in TEST() local
146 mobile::KinetoEdgeCPUProfiler profiler( in TEST() local
184 KinetoEdgeCPUProfiler profiler( in TEST() local
/external/pytorch/test/cpp/profiler/
Dperf_events.cpp16 torch::profiler::impl::linux_perf::PerfProfiler profiler; in TEST() local
55 torch::profiler::impl::linux_perf::PerfProfiler profiler; in TEST() local
128 torch::profiler::impl::linux_perf::PerfProfiler profiler; in TEST() local
198 torch::profiler::impl::linux_perf::PerfProfiler profiler; in TEST() local
/external/tensorflow/tensorflow/lite/delegates/
Dtelemetry.cc30 auto* profiler = reinterpret_cast<Profiler*>(context->profiler); in ReportDelegateSettings() local
41 auto* profiler = reinterpret_cast<Profiler*>(context->profiler); in ReportDelegateStatus() local
/external/tensorflow/tensorflow/core/profiler/rpc/
Dprofiler_service_impl.cc39 namespace profiler { namespace
47 ProfilerSession* profiler, in CollectDataToRepository()
81 std::unique_ptr<ProfilerSession> profiler = in Profile() local
/external/tensorflow/tensorflow/lite/
Dinterpreter_experimental.cc112 void Interpreter::SetProfiler(Profiler* profiler) { in SetProfiler()
121 void Interpreter::SetProfiler(std::unique_ptr<Profiler> profiler) { in SetProfiler()
125 void Interpreter::AddProfiler(Profiler* profiler) { in AddProfiler()
/external/autotest/client/common_lib/
Dprofiler_manager.py23 def load_profiler(self, profiler, args, dargs): argument
30 def add(self, profiler, *args, **dargs): argument
36 def delete(self, profiler): argument
/external/cronet/tot/base/sampling_heap_profiler/
Dsampling_heap_profiler_unittest.cc62 static void RunStartStopLoop(SamplingHeapProfiler* profiler) { in RunStartStopLoop()
187 auto* profiler = SamplingHeapProfiler::Get(); in CheckAllocationPattern() local
297 auto* profiler = SamplingHeapProfiler::Get(); in Run() local
307 auto* profiler = SamplingHeapProfiler::Get(); in TEST_F() local
326 auto* profiler = SamplingHeapProfiler::Get(); in TEST_F() local
/external/cronet/stable/base/sampling_heap_profiler/
Dsampling_heap_profiler_unittest.cc62 static void RunStartStopLoop(SamplingHeapProfiler* profiler) { in RunStartStopLoop()
187 auto* profiler = SamplingHeapProfiler::Get(); in CheckAllocationPattern() local
297 auto* profiler = SamplingHeapProfiler::Get(); in Run() local
307 auto* profiler = SamplingHeapProfiler::Get(); in TEST_F() local
326 auto* profiler = SamplingHeapProfiler::Get(); in TEST_F() local
/external/tensorflow/tensorflow/core/profiler/backends/gpu/
Dnvtx_utils.cc22 namespace profiler { namespace
Dcupti_utils.cc21 namespace profiler { namespace
/external/tensorflow/tensorflow/core/profiler/rpc/oss/
Dgrpc.cc19 namespace profiler { namespace
/external/pytorch/torch/csrc/profiler/standalone/
Dprivateuse1_observer.cpp3 namespace torch::profiler::impl { namespace

12345678910