Home
last modified time | relevance | path

Searched refs:begin_ps (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/utils/
Dtimespan.h34 static Timespan FromEndPoints(uint64 begin_ps, uint64 end_ps) { in FromEndPoints() argument
35 DCHECK_LE(begin_ps, end_ps); in FromEndPoints()
36 return Timespan(begin_ps, end_ps - begin_ps); in FromEndPoints()
39 explicit Timespan(uint64 begin_ps = 0, uint64 duration_ps = 0)
40 : begin_ps_(begin_ps), duration_ps_(duration_ps) {} in begin_ps_() argument
42 uint64 begin_ps() const { return begin_ps_; } in begin_ps() function
51 bool Empty() const { return begin_ps() == 0 && duration_ps() == 0; } in Empty()
64 return begin_ps() <= other.end_ps() && other.begin_ps() <= end_ps(); in Overlaps()
69 return begin_ps() <= other.begin_ps() && other.end_ps() <= end_ps(); in Includes()
79 std::max(begin_ps(), other.begin_ps()); in OverlappedDurationPs()
[all …]
Dstep_intersection.cc32 uint64 begin_ps = stepinfo.begin_ps(); in StepTimespan() local
33 uint64 end_ps = begin_ps + stepinfo.duration_ps(); in StepTimespan()
34 min_ps = std::min(min_ps, begin_ps); in StepTimespan()
47 uint64 begin_ps = timespan.begin_ps(); in AllStepsTimespan() local
49 min_ps = std::min(min_ps, begin_ps); in AllStepsTimespan()
Dderived_timeline.cc310 host_plane_start + PicosToNanos(group_info.timespan.begin_ps())); in DeriveEventsFromHostTrace()
Devent_span.cc72 {event.span.begin_ps(), event.type, /*is_start=*/true}); in GenerateEventBoundaries()
/external/libcups/filter/
Dcommandtops.c23 static void begin_ps(ppd_file_t *ppd, const char *user);
154 begin_ps(ppd, user); in auto_configure()
412 begin_ps(ppd_file_t *ppd, /* I - PPD file */ in begin_ps() function
458 begin_ps(ppd, user); in print_self_test_page()
502 begin_ps(ppd, user); in report_levels()
/external/tensorflow/tensorflow/core/profiler/convert/
Dstep_events_to_steps_db.cc65 step_info.set_begin_ps(step_time.begin_ps()); in ConvertStepDetailsToStepInfo()
98 << ", begin_ps=" << step_info.begin_ps() << std::endl; in DebugStepInfo()
Dxplane_to_op_metrics_db.cc157 {span.begin_ps(), tf_op_id, kTfOpBegin, *tf_op, is_eager}); in CollectTfActivities()
Dxplane_to_tf_functions.cc189 EntryOrExit(/*is_entry=*/true, index, timespan.begin_ps()); in TfFunctionExecutions()
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dsteps_db.proto33 uint64 begin_ps = 3; field