Home
last modified time | relevance | path

Searched refs:GetCurrentClockCycle (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/core/platform/profile_utils/
Dcpu_utils.h58 static inline uint64 GetCurrentClockCycle() { in GetCurrentClockCycle() function
60 return GetCpuUtilsHelperSingletonInstance().GetCurrentClockCycle(); in GetCurrentClockCycle()
138 uint64 GetCurrentClockCycle() final { return DUMMY_CYCLE_CLOCK; } in GetCurrentClockCycle() function
Dcpu_utils_test.cc38 const uint64 start_clock_count = CpuUtils::GetCurrentClockCycle(); in TEST_F()
42 const uint64 clock_count = CpuUtils::GetCurrentClockCycle(); in TEST_F()
46 const uint64 end_clock_count = CpuUtils::GetCurrentClockCycle(); in TEST_F()
Di_cpu_utils_helper.h37 virtual uint64 GetCurrentClockCycle() = 0;
Dandroid_armv7a_cpu_utils_helper.h38 uint64 GetCurrentClockCycle() final;
Dclock_cycle_profiler.h67 const uint64 clockCycle = profile_utils::CpuUtils::GetCurrentClockCycle(); in GetCurrentClockCycleInternal()
Dandroid_armv7a_cpu_utils_helper.cc47 uint64 AndroidArmV7ACpuUtilsHelper::GetCurrentClockCycle() { in GetCurrentClockCycle() function in tensorflow::profile_utils::AndroidArmV7ACpuUtilsHelper
/external/tensorflow/tensorflow/core/common_runtime/
Dexecutor.cc140 uint64 start_cycles = profile_utils::CpuUtils::GetCurrentClockCycle();
143 return profile_utils::CpuUtils::GetCurrentClockCycle() - start_cycles; in ElapsedCycles()