Home
last modified time | relevance | path

Searched refs:GetProfiler (Results 1 – 25 of 34) sorted by relevance

12

/external/armnn/src/armnn/test/
DProfilingEventTest.cpp51 profileManager.GetProfiler(),
58 CHECK_EQ(profileManager.GetProfiler(), testEvent2.GetProfiler());
96 profileManager.GetProfiler(),
103 CHECK_EQ(profileManager.GetProfiler(), testEvent2.GetProfiler());
DProfilerTests.cpp43 res = !profilerManager.GetProfiler(); in RegisterUnregisterProfilerSingleThreadImpl()
50 res &= profiler.get() == profilerManager.GetProfiler(); in RegisterUnregisterProfilerSingleThreadImpl()
56 res &= !profilerManager.GetProfiler(); in RegisterUnregisterProfilerSingleThreadImpl()
210 CHECK(!profilerManager.GetProfiler());
216 CHECK(!profilerManager.GetProfiler());
266 CHECK(!profilerManager.GetProfiler());
278 CHECK(profilerManager.GetProfiler());
284 CHECK(!profilerManager.GetProfiler());
/external/armnn/src/backends/backendsCommon/test/
DEndToEndTestImpl.hpp249 runtime->GetProfiler(netId)->EnableProfiling(true); in ImportNonAlignedInputPointerTest()
392 runtime->GetProfiler(netId)->EnableProfiling(true); in ImportAlignedPointerTest()
400 profilerManager.GetProfiler()->Print(ss); in ImportAlignedPointerTest()
482 runtime->GetProfiler(netId)->EnableProfiling(true); in ImportOnlyWorkload()
492 profilerManager.GetProfiler()->Print(ss); in ImportOnlyWorkload()
572 runtime->GetProfiler(netId)->EnableProfiling(true); in ExportOnlyWorkload()
582 profilerManager.GetProfiler()->Print(ss); in ExportOnlyWorkload()
662 runtime->GetProfiler(netId)->EnableProfiling(true); in ImportAndExportWorkload()
672 profilerManager.GetProfiler()->Print(ss); in ImportAndExportWorkload()
756 runtime->GetProfiler(netId)->EnableProfiling(true); in ExportOutputWithSeveralOutputSlotConnectionsTest()
[all …]
DJsonPrinterTestImpl.cpp191 runtime->GetProfiler(netId)->EnableProfiling(true); in GetSoftmaxProfilerJson()
200 profilerManager.GetProfiler()->Print(ss); in GetSoftmaxProfilerJson()
/external/armnn/src/backends/cl/test/
DClImportTensorHandleTests.cpp186 runtime->GetProfiler(netId)->EnableProfiling(true);
194 profilerManager.GetProfiler()->Print(ss);;
395 runtime->GetProfiler(netId)->EnableProfiling(true);
412 profilerManager.GetProfiler()->Print(ss);;
537 runtime->GetProfiler(netId)->EnableProfiling(true);
555 profilerManager.GetProfiler()->Print(ss);;
685 runtime->GetProfiler(netId)->EnableProfiling(true);
703 profilerManager.GetProfiler()->Print(ss);;
807 runtime->GetProfiler(netId)->EnableProfiling(true);
823 profilerManager.GetProfiler()->Print(ss);;
[all …]
DClFallbackTests.cpp137 runtime->GetProfiler(netId)->EnableProfiling(true);
145 profilerManager.GetProfiler()->Print(ss);;
262 runtime->GetProfiler(netId)->EnableProfiling(true);
270 profilerManager.GetProfiler()->Print(ss);;
419 runtime->GetProfiler(netId)->EnableProfiling(true);
427 profilerManager.GetProfiler()->Print(ss);;
556 runtime->GetProfiler(netId)->EnableProfiling(true);
564 profilerManager.GetProfiler()->Print(ss);;
/external/armnn/src/armnn/
DRuntime.cpp151 const std::shared_ptr<IProfiler> IRuntime::GetProfiler(NetworkId networkId) const in GetProfiler() function in armnn::IRuntime
153 return pRuntimeImpl->GetProfiler(networkId); in GetProfiler()
187 auto profiler = inNetwork->GetProfiler(); in LoadNetwork()
290 const std::shared_ptr<IProfiler> RuntimeImpl::GetProfiler(NetworkId networkId) const in GetProfiler() function in armnn::RuntimeImpl
296 return loadedNetwork->GetProfiler(); in GetProfiler()
664 ProfilerManager::GetInstance().RegisterProfiler(loadedNetwork->GetProfiler().get()); in EnqueueWorkload()
717 ProfilerManager::GetInstance().RegisterProfiler(loadedNetwork->GetProfiler().get()); in Execute()
749 ProfilerManager::GetInstance().RegisterProfiler(loadedNetwork->GetProfiler().get()); in CreateWorkingMemHandle()
DProfiling.hpp118 IProfiler* GetProfiler();
141 , m_Profiler(ProfilerManager::GetInstance().GetProfiler()) in ScopedProfilingEvent()
185 IProfiler* profiler(ProfilerManager::GetInstance().GetProfiler()); ///< Profiler used in ProfilingUpdateDescriptions()
DLoadedNetwork.hpp87 …const std::shared_ptr<IProfiler>& GetProfiler() const { return m_OptimizedNetwork->GetProfiler(); } in GetProfiler() function in armnn::LoadedNetwork
DProfilingEvent.hpp68 const IProfiler* GetProfiler() const;
DProfilingEvent.cpp79 const IProfiler* Event::GetProfiler() const in GetProfiler() function in armnn::Event
DRuntime.hpp95 const std::shared_ptr<IProfiler> GetProfiler(NetworkId networkId) const;
DGraph.hpp230 const std::shared_ptr<IProfiler>& GetProfiler() const;
/external/armnn/src/backends/neon/test/
DNeonFallbackTests.cpp129 runtime->GetProfiler(netId)->EnableProfiling(true);
137 profilerManager.GetProfiler()->Print(ss);;
265 runtime->GetProfiler(netId)->EnableProfiling(true);
273 profilerManager.GetProfiler()->Print(ss);;
410 runtime->GetProfiler(netId)->EnableProfiling(true);
418 profilerManager.GetProfiler()->Print(ss);;
546 runtime->GetProfiler(netId)->EnableProfiling(true);
554 profilerManager.GetProfiler()->Print(ss);;
688 runtime->GetProfiler(netId)->EnableProfiling(true);
696 profilerManager.GetProfiler()->Print(ss);;
[all …]
/external/armnn/python/pyarmnn/src/pyarmnn/swig/modules/
Darmnn_runtime.i295 ") GetProfiler;
297 armnn::IProfiler* GetProfiler(int networkId) { in GetProfiler() function
298 std::shared_ptr<armnn::IProfiler> profiler = $self->GetProfiler(networkId); in GetProfiler()
/external/tensorflow/tensorflow/lite/
Dinterpreter_experimental.cc134 Profiler* Interpreter::GetProfiler() { in GetProfiler() function in tflite::Interpreter
135 return primary_subgraph().GetProfiler(); in GetProfiler()
/external/armnn/tests/
DInferenceModel.hpp591 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkIdentifier); in Run()
659 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkIdentifier); in RunAsync()
711 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkIdentifier); in RunAsync()
/external/armnn/include/armnn/
DIRuntime.hpp290 const std::shared_ptr<IProfiler> GetProfiler(NetworkId networkId) const;
/external/android-nn-driver/
DArmnnPreparedModel.cpp136 m_Runtime->GetProfiler(m_NetworkId)->EnableProfiling(m_GpuProfilingEnabled); in ArmnnPreparedModel()
163 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkId); in ~ArmnnPreparedModel()
DArmnnPreparedModel_1_2.cpp172 m_Runtime->GetProfiler(m_NetworkId)->EnableProfiling(m_GpuProfilingEnabled); in ArmnnPreparedModel_1_2()
216 m_Runtime->GetProfiler(m_NetworkId)->EnableProfiling(m_GpuProfilingEnabled); in ArmnnPreparedModel_1_2()
243 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkId); in ~ArmnnPreparedModel_1_2()
DArmnnPreparedModel_1_3.cpp194 m_Runtime->GetProfiler(m_NetworkId)->EnableProfiling(m_GpuProfilingEnabled); in ArmnnPreparedModel_1_3()
240 m_Runtime->GetProfiler(m_NetworkId)->EnableProfiling(m_GpuProfilingEnabled); in ArmnnPreparedModel_1_3()
267 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkId); in ~ArmnnPreparedModel_1_3()
/external/armnn/tests/TfLiteYoloV3Big-Armnn/
DTfLiteYoloV3Big-Armnn.cpp529 auto backboneProfile = runtime->GetProfiler(backboneId); in main()
547 auto detectorProfile = runtime->GetProfiler(detectorId); in main()
/external/armnn/shim/sl/canonical/
DArmnnPreparedModel.cpp123 m_Runtime->GetProfiler(m_NetworkId)->EnableProfiling(m_GpuProfilingEnabled); in Init()
637 auto profiler = m_Runtime->GetProfiler(m_NetworkId); in ~ArmnnPreparedModel()
/external/armnn/tests/ExecuteNetwork/
DArmNNExecutor.cpp120 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkId); in ExecuteAsync()
171 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkId); in ExecuteSync()
/external/armnn/python/pyarmnn/test/
Dtest_runtime.py289 profiler = runtime.GetProfiler(net_id)

12