HomeSort by relevance Sort by last modified time
    Searched defs:Profiler (Results 1 - 25 of 43) sorted by null

1 2

  /external/tensorflow/tensorflow/cc/profiler/
profiler.h 21 #include "tensorflow/core/profiler/internal/tfprof_stats.h"
22 #include "tensorflow/core/profiler/tfprof_options.h"
23 #include "tensorflow/core/profiler/tfprof_output.pb.h"
31 /// A `Profiler` object lets the caller profile the execution of a graph.
48 /// // Then create profiler to do profiling.
51 /// Profiler profiler(graph);
52 /// profiler.AddStep(0, run_meta);
54 /// MultiGraphNodeProto r = profiler.ProfileOperations(opts);
56 class Profiler {
    [all...]
profiler.cc 15 #include "tensorflow/cc/profiler/profiler.h"
20 Profiler::Profiler(const GraphDef& graph) {
26 void Profiler::AddStep(int64 step, const RunMetadata& run_meta) {
32 GraphNodeProto Profiler::ProfileGraph(const Options& options) {
37 GraphNodeProto Profiler::ProfileNameScope(const Options& options) {
42 MultiGraphNodeProto Profiler::ProfileOperations(const Options& options) {
47 Status Profiler::SerializeToString(string* content) {
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profiler.java 17 package com.android.camera.stats.profiler;
23 public interface Profiler {
  /external/swiftshader/src/Main/
Config.cpp 22 Profiler profiler; member in namespace:sw
24 Profiler::Profiler()
29 void Profiler::reset()
55 void Profiler::nextFrame()
Config.hpp 46 struct Profiler
48 Profiler();
74 extern Profiler profiler;
  /packages/inputmethods/LatinIME/native/jni/src/utils/
profiler.h 29 class Profiler final {
31 Profiler(const clockid_t clockId)
35 ~Profiler() {
57 DISALLOW_IMPLICIT_CONSTRUCTORS(Profiler);
74 #define PROF_INIT Profiler __LATINIME__PROFILER__(CLOCK_THREAD_CPUTIME_ID)
  /external/tensorflow/tensorflow/python/profiler/
model_analyzer.py 28 from tensorflow.core.profiler import tfprof_options_pb2
29 from tensorflow.core.profiler import tfprof_output_pb2
34 from tensorflow.python.profiler import option_builder
35 from tensorflow.python.profiler import tfprof_logger
125 @tf_export('profiler.Profiler')
126 class Profiler(object):
127 """TensorFlow multi-step profiler.
129 https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/profiler/README.md
133 # Currently we are only allowed to create 1 profiler per process
    [all...]
  /external/webrtc/webrtc/base/
profiler.cc 11 #include "webrtc/base/profiler.h"
89 Profiler::~Profiler() = default;
91 Profiler* Profiler::Instance() {
92 RTC_DEFINE_STATIC_LOCAL(Profiler, instance, ());
96 Profiler::Profiler() {
99 void Profiler::StartEvent(const std::string& event_name) {
115 void Profiler::StopEvent(const std::string& event_name)
    [all...]
profiler.h 11 // A simple wall-clock profiler for instrumented code.
59 rtc::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev)
64 rtc::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix)
67 #define PROFILE_START(msg) rtc::Profiler::Instance()->StartEvent(msg)
68 #define PROFILE_STOP(msg) rtc::Profiler::Instance()->StopEvent(msg)
88 // Tracks information for one profiler event.
115 // macros, defined above, rather than directly calling Profiler methods.
116 class Profiler {
118 ~Profiler();
129 static Profiler* Instance()
    [all...]
  /packages/services/Telephony/src/com/android/phone/
Profiler.java 28 public class Profiler {
35 // Profiler.PROFILE first, so the method calls will get optimized out
51 private Profiler() {
124 Log.d(LOG_TAG, "[Profiler] " + msg);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
profile.rb 57 options[ :debug_listener ] ||= Profiler.new( self )
186 =begin rdoc ANTLR3::Profile::Profiler
191 Profiler is an event-listener that performs all of the profiling accounting and
195 class Profiler
206 # (maxLookaheadInCurrentDecision in java Profiler)
210 # (lastTokenConsumed in java Profiler)
  /external/gemmlowp/profiling/
instrumentation.h 19 // profiler.h is only needed to drive the profiler:
22 // See the usage example in profiler.h.
82 static Mutex* Profiler() {
171 ScopedLock sl(GlobalMutexes::Profiler());
199 // with this profiler. Construct local ScopedProfilingLabel variables,
203 // See the example in profiler.h.
220 ScopedLock sl(GlobalMutexes::Profiler());
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
Profiler.java 25 package org.slf4j.profiler;
34 // + Profiler [BAS]
37 // |--+ Profiler Y
45 * A poor man's profiler to measure the time elapsed performing some lengthy
50 public class Profiler implements TimeInstrument {
52 final static String PROFILER_MARKER_NAME = "PROFILER";
67 public Profiler(String name) {
106 public Profiler startNested(String name) {
108 Profiler nestedProfiler = new Profiler(name)
239 Profiler profiler = (Profiler) child; local
    [all...]
  /system/extras/tests/icachetest/
Profiler.h 34 class Profiler {
65 static Profiler& get() noexcept;
68 Profiler(const Profiler& rhs) = delete;
69 Profiler(Profiler&& rhs) = delete;
70 Profiler& operator=(const Profiler& rhs) = delete;
71 Profiler& operator=(Profiler&& rhs) = delete
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 51 public class Profiler : BlankDebugEventListener {
92 public Profiler() {
95 public Profiler(DebugParser parser) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 50 public class Profiler : BlankDebugEventListener
92 public Profiler()
96 public Profiler(DebugParser parser)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 38 public class Profiler extends BlankDebugEventListener {
148 public Profiler() {
151 public Profiler(DebugParser parser) {
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 141 : ModulePass(ID), Profiler(Opts) {
144 const char *getPassName() const override { return "GCOV Profiler"; }
146 bool runOnModule(Module &M) override { return Profiler.runOnModule(M); }
149 GCOVProfiler Profiler;
466 GCOVProfiler Profiler(GCOVOpts);
468 if (!Profiler.runOnModule(M))
    [all...]
  /external/autotest/frontend/afe/
models.py     [all...]
  /external/v8/src/
log.cc 25 #include "src/profiler/profiler-listener.h"
26 #include "src/profiler/tick-sample.h"
27 #include "src/runtime-profiler.h"
545 // The Profiler samples pc and sp values for the main thread.
550 class Profiler: public base::Thread {
552 explicit Profiler(Isolate* isolate);
602 // Tells whether profiler is engaged, that is, processing thread is stated.
614 // Ticker used to provide ticks to the profiler and the sliding state
629 void SetProfiler(Profiler* profiler)
    [all...]
  /external/clang/lib/AST/
StmtProfile.cpp 183 // FIXME: Implement MS style inline asm statement profiler.
262 StmtProfiler *Profiler;
268 OMPClauseProfiler(StmtProfiler *P) : Profiler(P) { }
279 Profiler->VisitStmt(S);
286 Profiler->VisitStmt(E);
291 Profiler->VisitStmt(C->getCondition());
296 Profiler->VisitStmt(C->getCondition());
301 Profiler->VisitStmt(C->getNumThreads());
306 Profiler->VisitStmt(C->getSafelen());
311 Profiler->VisitStmt(C->getSimdlen())
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /frameworks/base/core/java/android/app/
ActivityThread.java 268 Profiler mProfiler;
644 /** Initial values for {@link Profiler}. */
654 static final class Profiler {
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 

Completed in 2185 milliseconds

1 2