HomeSort by relevance Sort by last modified time
    Searched refs:Microseconds (Results 1 - 25 of 73) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Library/
StallSmmLib.h 42 Delay for at least the request number of microseconds
44 @param[in] Microseconds Number of microseconds to delay.
51 IN UINTN Microseconds
  /external/tensorflow/tensorflow/core/common_runtime/
profile_handler.h 44 virtual void RecordActivity(const string& device, Microseconds start,
45 Microseconds limit, StringPiece label,
73 virtual void StepDone(Microseconds start_time, Microseconds finish_time,
74 Microseconds cleanup_time, int total_runops,
  /external/tensorflow/tensorflow/core/distributed_runtime/
scheduler.h 39 Microseconds ComputeAsap(std::vector<Microseconds>* asap_times);
43 Microseconds ComputeAlap(std::vector<Microseconds>* alap_times);
65 Microseconds time;
78 Microseconds ComputeSchedule(std::vector<Microseconds>* start_times);
102 Microseconds ComputeSchedule(std::vector<Microseconds>* start_times);
106 Microseconds AssignPriorities(std::vector<int64>* priorities)
    [all...]
scheduler.cc 77 Microseconds SlackAnalysis::ComputeAsap(std::vector<Microseconds>* asap_times) {
91 Microseconds ctime = cost_model_->TimeEstimate(curr);
94 Microseconds copy_time(0);
105 Microseconds new_asap = (*asap_times)[curr->id()] + ctime + copy_time;
119 Microseconds SlackAnalysis::ComputeAlap(std::vector<Microseconds>* alap_times) {
150 Microseconds copy_time(0);
160 Microseconds ctime = cost_model_->TimeEstimate(src);
161 Microseconds new_latest = (*alap_times)[curr->id()] - ctime - copy_time
    [all...]
  /external/tensorflow/tensorflow/core/graph/
types.h 24 // We model running time in microseconds.
25 TF_LIB_GTL_DEFINE_INT_TYPE(Microseconds, int64);
costmodel.h 41 // * The accumulated execution time (in microseconds) of a node.
102 // Records that Executions of "node" have taken "time" microseconds.
103 void RecordTime(const Node* node, Microseconds time);
106 Microseconds TotalTime(const Node* node) const;
109 Microseconds TimeEstimate(const Node* node) const;
142 // Records the maximum execution time (in microseconds) of "node".
143 void RecordMaxExecutionTime(const Node* node, Microseconds time);
145 // Returns the maximum execution time (in microseconds) of "node".
146 Microseconds MaxExecutionTime(const Node* node) const;
164 static Microseconds CopyTimeEstimate(Bytes b, double network_latency_millis
    [all...]
costmodel.cc 28 const Microseconds kDefaultTimeEstimate(1);
29 const Microseconds kMinTimeEstimate(1);
209 void CostModel::RecordTime(const Node* node, Microseconds time) {
217 Microseconds CostModel::TotalTime(const Node* node) const {
221 time_[id] < Microseconds(0)) {
222 return Microseconds(0);
227 Microseconds CostModel::TimeEstimate(const Node* node) const {
236 time_[n->id()] >= Microseconds(0))
334 void CostModel::RecordMaxExecutionTime(const Node* node, Microseconds time) {
341 Microseconds CostModel::MaxExecutionTime(const Node* node) const
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
timer.cc 33 uint64 Timer::Microseconds() const { return implementation_->Microseconds(); }
timer.h 48 // Returns the elapsed number of microseconds for a completed timer.
50 uint64 Microseconds() const;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/StallSmmLib/
StallSmm.c 45 Delay for at least the request number of microseconds.
48 @param Microseconds Number of microseconds to delay.
55 IN UINTN Microseconds
65 if (Microseconds == 0) {
77 Ticks = Microseconds * 358 / 100 + OriginalTick + 1;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/
Stall.c 45 @param Microseconds The number of microseconds to stall execution.
48 amount of microseconds.
55 IN UINTN Microseconds
67 // Counter = Microseconds * 10 / gMetronome->TickPeriod
70 if (Microseconds > 0x1999999999999999ULL) {
72 // Microseconds is too large to multiple by 10 first. Perform the divide
76 Microseconds,
95 // Calculate the number of ticks by dividing the number of microseconds by
99 MultU64x32 (Microseconds, 10),
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
Stall.c 41 Waits for at least the given number of microseconds.
45 @param Microseconds Desired length of time to wait.
55 IN UINTN Microseconds
64 if (Microseconds == 0) {
75 Ticks = Microseconds * 358 / 100 + OriginalTick + 1;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/
Stall.c 40 Waits for at least the given number of microseconds.
44 @param Microseconds Desired length of time to wait.
54 IN UINTN Microseconds
63 if (Microseconds == 0) {
74 Ticks = Microseconds * 358 / 100 + OriginalTick + 1;
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Library/
PchPlatformLib.h 35 IN UINTN Microseconds
40 Delay for at least the request number of microseconds.
43 @param[in] Microseconds Number of microseconds to delay.
  /system/chre/util/include/chre/util/
time.h 39 //! The number of microseconds in one millisecond.
44 class Microseconds;
83 * Constructs a Microseconds time duration given nanoseconds.
96 * Obtains the number of Microseconds stored by this time duration.
98 * @return the value of microseconds.
122 * Represents a duration of time in microseconds.
124 class Microseconds {
127 * Construct a Microseconds time duration given a value.
129 constexpr explicit Microseconds(uint64_t microseconds);
    [all...]
time_impl.h 65 constexpr Microseconds::Microseconds(uint64_t microseconds)
66 : mMicroseconds(microseconds) {}
68 constexpr Microseconds::Microseconds(Nanoseconds nanoseconds)
72 constexpr uint64_t Microseconds::toRawNanoseconds() const {
80 constexpr uint64_t Microseconds::getMicroseconds() const {
84 constexpr uint64_t Microseconds::getMilliseconds() const {
100 constexpr Nanoseconds::Nanoseconds(Microseconds microseconds
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/Stall/
Stall.h 37 IN UINTN Microseconds
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
Stall.h 30 of microseconds stipulated in the final argument of the API.
35 @param Microseconds Number of microseconds for which to stall.
45 IN UINTN Microseconds
53 /// The resolution in microseconds of the stall services.
  /external/tensorflow/tensorflow/stream_executor/host/
host_timer.h 39 // microseconds.
40 uint64 Microseconds() const override;
host_timer.cc 36 uint64 HostTimer::Microseconds() const {
37 return duration_cast<std::chrono::microseconds>(duration_).count();
  /external/webrtc/webrtc/modules/video_processing/test/
deflickering_test.cc 81 printf("%u\n", static_cast<int>(acc_ticks.Microseconds() / frameNum));
82 if (acc_ticks.Microseconds() < min_runtime || run_idx == 0) {
83 min_runtime = acc_ticks.Microseconds();
85 avg_runtime += acc_ticks.Microseconds();
  /device/google/cuttlefish_common/guest/hals/hwcomposer/legacy/
stats_keeper.cpp 29 using cvd::time::Microseconds;
221 bprintf(" Time spent on prepare() (in microseconds):\n max: %" PRId64
225 Microseconds(MultisetMax(prepare_call_times_)).count(),
226 Microseconds(prepare_call_total_time_).count() / num_prepare_calls_,
227 Microseconds(MultisetMin(prepare_call_times_)).count(),
228 Microseconds(prepare_call_total_time_).count());
229 bprintf(" Time spent on set() (in microseconds):\n max: %" PRId64
232 Microseconds(MultisetMax(set_call_times_)).count(),
233 Microseconds(set_call_total_time_).count() / num_set_calls_,
234 Microseconds(MultisetMin(set_call_times_)).count()
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/StallPei/
Stall.c 25 IN UINTN Microseconds
67 of microseconds stipulated in the final argument of the API.
72 @param Microseconds Number of microseconds for which to stall.
82 IN UINTN Microseconds
103 NtThunk->Sleep ((DWORD)((Microseconds + 999) / 1000));
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_timer.h 63 // See perftools::gputools::Timer::Microseconds().
65 uint64 Microseconds() const override {
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
select.c 76 /** Sleep for the specified number of Microseconds.
80 @param[in] Microseconds Number of microseconds to sleep.
85 usleep( useconds_t Microseconds )
87 while ( MAX_SLEEP_DELAY < Microseconds ) {
89 Microseconds -= MAX_SLEEP_DELAY;
91 gBS->Stall((UINTN)Microseconds );

Completed in 832 milliseconds

1 2 3