Searched refs:timeline (Results 1 - 25 of 47) sorted by relevance

12

/external/linux-kselftest/tools/testing/selftests/sync/
H A Dsync_alloc.c34 int timeline, valid; local
36 timeline = sw_sync_timeline_create();
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
40 sw_sync_timeline_destroy(timeline);
46 int timeline, fence, valid; local
48 timeline = sw_sync_timeline_create();
49 valid = sw_sync_timeline_is_valid(timeline);
50 ASSERT(valid, "Failure allocating timeline\n");
52 fence = sw_sync_fence_create(timeline, "allocFenc
63 int fence, timeline; local
[all...]
H A Dsync_fence.c2 * sync fence tests with one timeline
35 int timeline = sw_sync_timeline_create(); local
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
40 fence = sw_sync_fence_create(timeline, "allocFence", 5);
48 /* Advance timeline from 0 -> 1 */
49 ret = sw_sync_timeline_inc(timeline, 1);
50 ASSERT(ret == 0, "Failure advancing timeline\n");
57 ret = sw_sync_timeline_inc(timeline, 4);
65 ret = sw_sync_timeline_inc(timeline, 1
79 int timeline = sw_sync_timeline_create(); local
[all...]
H A Dsync_merge.c35 int timeline = sw_sync_timeline_create(); local
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
40 fence = sw_sync_fence_create(timeline, "allocFence", 5);
51 sw_sync_timeline_inc(timeline, 5);
57 sw_sync_timeline_destroy(timeline);
H A Dsync_stress_parallelism.c36 int timeline; member in struct:__anon13545
43 int timeline = test_data_two_threads.timeline; local
48 fence = sw_sync_fence_create(timeline, "fence",
66 ret = sw_sync_timeline_inc(timeline, 1);
67 ASSERT(ret == 0, "Advancing timeline failed\n");
79 int timeline = sw_sync_timeline_create(); local
81 valid = sw_sync_timeline_is_valid(timeline);
82 ASSERT(valid, "Failure allocating timeline\n");
86 test_data_two_threads.timeline
[all...]
H A Dsync_stress_merge.c44 int timeline, timeline_offset, sync_point; local
65 timeline = timelines[timeline_offset];
68 /* Keep track of the latest sync_point in each timeline. */
75 tmpfence = sw_sync_fence_create(timeline, "fence", sync_point);
100 /* Increment the timeline to the last sync_point */
/external/toolchain-utils/automation/common/
H A Dstate_machine.py16 in a timeline object.
27 self.timeline = events.EventHistory()
28 self.timeline.AddEvent(self._state)
51 self.timeline.AddEvent(self._state)
54 self.timeline.last.Finish()
H A Djob_group.py60 return self.status.timeline[1].time_started
/external/toolchain-utils/cros_utils/
H A Dtimeline_test.py11 import timeline namespace
18 tl = timeline.Timeline()
26 tl = timeline.Timeline()
35 tl = timeline.Timeline()
43 tl = timeline.Timeline()
/external/drm_hwcomposer/
H A Dvirtualcompositorworker.h44 int FinishComposition(int timeline);
/external/tensorflow/tensorflow/python/client/
H A Dtimeline_test.py25 from tensorflow.python.client import timeline namespace
55 tl = timeline.Timeline(run_metadata.step_stats)
73 tl = timeline.Timeline(step_stats)
76 tl = timeline.Timeline(step_stats)
79 tl = timeline.Timeline(step_stats)
82 tl = timeline.Timeline(step_stats)
105 tl = timeline.Timeline(step_stats)
108 tl = timeline.Timeline(step_stats)
111 tl = timeline.Timeline(step_stats)
114 tl = timeline
[all...]
/external/skia/experimental/docs/
H A DanimationCommon.js11 this.timeline = [];
18 function addActions(frame, timeline) {
23 loopOver(action, timeline);
36 for (var index = animationState.timelineIndex; index < animationState.timeline.length; ++index) {
37 var animation = animationState.timeline[index];
238 addActions("_default", animationState.timeline);
239 addActions(frame, animationState.timeline);
240 for (var index = 0; index < animationState.timeline.length; ++index) {
241 animationState.timeline[index].position = index;
243 animationState.timeline
[all...]
/external/skqp/experimental/docs/
H A DanimationCommon.js11 this.timeline = [];
18 function addActions(frame, timeline) {
23 loopOver(action, timeline);
36 for (var index = animationState.timelineIndex; index < animationState.timeline.length; ++index) {
37 var animation = animationState.timeline[index];
238 addActions("_default", animationState.timeline);
239 addActions(frame, animationState.timeline);
240 for (var index = 0; index < animationState.timeline.length; ++index) {
241 animationState.timeline[index].position = index;
243 animationState.timeline
[all...]
/external/toolchain-utils/crosperf/
H A Dbenchmark_run.py13 from cros_utils import timeline namespace
57 self.timeline = timeline.Timeline()
58 self.timeline.Record(STATUS_PENDING)
102 self.timeline.Record(STATUS_WAITING)
124 self.timeline.Record(STATUS_SUCCEEDED)
126 if self.timeline.GetLastEvent() != STATUS_FAILED:
128 self.timeline.Record(STATUS_FAILED)
133 if self.timeline.GetLastEvent() != STATUS_FAILED:
134 self.timeline
[all...]
H A Dbenchmark_run_unittest.py188 br.timeline.Record = MockRecordStatus
277 br.timeline.GetLastEvent = GetLastEventPassed
278 br.timeline.Record = RecordStub
304 br.timeline.GetLastEvent = GetLastEventFailed
305 br.timeline.Record = RecordStub
380 br.timeline.Record = MockRecord
H A Dexperiment_status.py91 status_bins[benchmark_run.timeline.GetLastEvent()].append(benchmark_run)
121 t_last = benchmark_run.timeline.GetLastEventTime()
/external/tensorflow/tensorflow/core/profiler/g3doc/
H A Dprofile_time.md109 Set ```-output timeline:outfile=<filename>``` to generate timeline instead of stdout.
143 Usually, use graph view to generate a timeline to visualize the result.
153 tfprof options allow users to generate timeline in some advanced ways.
156 # Only generate timeline for gpu3 and cpu on workers.
157 graph -max_depth 10000000 -step 0 -account_type_regexes .*gpu:3.*,.*worker.*cpu:0.* -output timeline:outfile=<filename.json>
162 Open a Chrome browser, enter URL chrome://tracing and load the timeline file.
H A Dprofile_memory.md3 It is generally a good idea to visualize the memory usage in timeline.
8 tfprof> graph -max_depth 10000000 -step 0 -account_type_regexes .* -output timeline:outfile=<filename>
13 Open a Chrome browser, enter URL chrome://tracing and load the timeline file.
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DTimeline.java80 * Creates a new timeline with a 'sequence' behavior. Its children will
90 * Creates a new timeline with a 'parallel' behavior. Its children will be
139 * Adds a Tween to the current timeline.
141 * @return The current timeline, for chaining instructions.
144 if (isBuilt) throw new RuntimeException("You can't push anything to a timeline once it is started");
152 * @return The current timeline, for chaining instructions.
154 public Timeline push(Timeline timeline) { argument
155 if (isBuilt) throw new RuntimeException("You can't push anything to a timeline once it is started");
156 if (timeline.current != timeline) thro
[all...]
/external/tensorflow/tensorflow/examples/tutorials/mnist/
H A Dmnist_softmax_xla.py28 from tensorflow.python.client import timeline namespace
73 # Create a timeline for the last loop and export to json to view with
81 trace = timeline.Timeline(step_stats=run_metadata.step_stats)
82 with open('timeline.ctf.json', 'w') as trace_file:
/external/tensorflow/tensorflow/core/grappler/costs/
H A Dgraph_memory.h70 void InferFromTrace(const StepStats& timeline);
/external/tensorflow/tensorflow/core/profiler/internal/
H A Dtfprof_op.h53 Timeline* timeline) override;
H A Dtfprof_scope.h52 Timeline* timeline) override;
H A Dtfprof_graph.cc72 const ShowNode* TFGraph::ShowInternal(const Options& opts, Timeline* timeline) { argument
80 if (timeline && timeline->step() < 0) {
83 "Must specify -step option to generate timeline in graph view.\n");
111 if (timeline) {
112 timeline->GenerateGraphTimeline(root->show_children);
H A Dtfprof_code.h69 Timeline* timeline) override;
/external/autotest/client/site_tests/performance_InboxInputLatency/
H A Dperformance_InboxInputLatency.py16 from telemetry.timeline import model as model_module
17 from telemetry.timeline import tracing_config

Completed in 553 milliseconds

12