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

1 2 3 4 5 6 7 8 9

  /external/tensorflow/tensorflow/python/debug/lib/
profiling_test.py 15 """Unit tests for the basic data structures and algorithms for profiling."""
22 from tensorflow.python.debug.lib import profiling
35 self.profile_datum_1 = profiling.ProfileDatum(
43 self.profile_datum_2 = profiling.ProfileDatum(
51 self.profile_datum_3 = profiling.ProfileDatum(
59 self.profile_datum_4 = profiling.ProfileDatum(
63 aggregate_data = profiling.AggregateProfile(self.profile_datum_1)
71 aggregate_data = profiling.AggregateProfile(self.profile_datum_1)
80 aggregate_data = profiling.AggregateProfile(self.profile_datum_1)
90 aggregate_data = profiling.AggregateProfile(self.profile_datum_1
    [all...]
source_utils.py 27 from tensorflow.python.debug.lib import profiling
266 """Annotate a Python source file with profiling information at each line.
282 `profiling.LineOrFuncProfileSummary`.
311 profiling.AggregateProfile(profile_datum))
  /test/vts/testcases/template/hal_hidl_host_test/
hal_hidl_host_test.py 48 Test precondition check, prepare for profiling and coverage measurement
64 # Enable profiling.
65 if self.profiling.enabled:
66 self.profiling.EnableVTSProfiling(self.shell)
72 If profiling is enabled for the test, collect the profiling data
73 and disable profiling after the test is done.
83 if self.profiling.enabled:
84 self.profiling.ProcessAndUploadTraceData()
89 if self.profiling.enabled
    [all...]
  /test/vts-testcase/performance/hidl_trace_recorder/
HidlTraceRecorder.py 45 # before running the cts test module enable profiling.
46 self.profiling.EnableVTSProfiling(
62 # after running the cts test module, copy trace files and disable profiling.
63 self.profiling.GetTraceFiles(self.dut, profiling_trace_path)
64 self.profiling.DisableVTSProfiling(self.dut.shell.one)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bootstrap.go 12 Fatalf("mutex profiling unavailable in version %v", runtime.Version())
util.go 75 // Not doing memory profiling; disable it entirely.
  /prebuilts/go/darwin-x86/src/cmd/pprof/
doc.go 11 // For more information, see https://blog.golang.org/profiling-go-programs.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bootstrap.go 12 Fatalf("mutex profiling unavailable in version %v", runtime.Version())
  /prebuilts/go/linux-x86/src/cmd/pprof/
doc.go 11 // For more information, see https://blog.golang.org/profiling-go-programs.
  /test/vti/dashboard/src/main/webapp/css/
show_table.css 58 #profiling-container {
64 #profiling-body {
67 #profiling-list {
77 .collection a.collection-item.profiling-point-name {
show_performance_digest.css 37 .profiling-name {
43 .profiling-subtitle {
show_graph.css 39 .profiling-name {
show_test_runs_common.css 35 #profiling-container {
61 #profiling-body {
64 #profiling-list {
74 .collection a.collection-item.profiling-point-name {
  /prebuilts/go/darwin-x86/src/runtime/
cpuprof.go 5 // CPU profiling.
7 // The signal handler for the profiling clock tick adds a new stack trace
25 on bool // profiling is on
29 // corresponding to profiling signals arriving on
35 // size for framing, 100 Hz profiling would generate
37 // Hopefully a normal Go thread will get the profiling
46 // SetCPUProfileRate sets the CPU profiling rate to hz samples per second.
47 // If hz <= 0, SetCPUProfileRate turns off profiling.
141 // addExtra adds the "extra" profiling events,
195 // binary CPU profiling stack trace data, blocking until data is available
    [all...]
os2_plan9.go 46 prof struct { // Per process profiling
signal_darwin.go 35 /* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
signal_dragonfly.go 35 /* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
signal_freebsd.go 35 /* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
signal_nacl.go 40 /* 27 */ {_SigNotify, "SIGPROF: profiling alarm clock"},
signal_netbsd.go 35 /* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
  /prebuilts/go/linux-x86/src/runtime/
cpuprof.go 5 // CPU profiling.
7 // The signal handler for the profiling clock tick adds a new stack trace
25 on bool // profiling is on
29 // corresponding to profiling signals arriving on
35 // size for framing, 100 Hz profiling would generate
37 // Hopefully a normal Go thread will get the profiling
46 // SetCPUProfileRate sets the CPU profiling rate to hz samples per second.
47 // If hz <= 0, SetCPUProfileRate turns off profiling.
141 // addExtra adds the "extra" profiling events,
195 // binary CPU profiling stack trace data, blocking until data is available
    [all...]
  /test/vts/testcases/template/binary_test/
binary_test.py 396 if not self.isSkipAllTests() and self.profiling.enabled:
397 self.profiling.ProcessAndUploadTraceData()
521 if self.profiling.enabled:
522 self.profiling.EnableVTSProfiling(self.shell,
531 if self.profiling.enabled:
532 self.profiling.ProcessTraceDataForTestCase(self._dut)
533 self.profiling.DisableVTSProfiling(self.shell)
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 5 // Package pprof writes runtime profiling data in the format expected
8 // Profiling a Go program
10 // The first step to profiling a Go program is to enable profiling.
11 // Support for profiling benchmarks built with the standard testing
18 // To add equivalent profiling support to a standalone program, add
52 // There is also a standard HTTP interface to profiling data. Adding
119 // output to a writer during profiling.
697 profiling bool
701 // StartCPUProfile enables CPU profiling for the current process
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof.go 5 // Package pprof writes runtime profiling data in the format expected
8 // Profiling a Go program
10 // The first step to profiling a Go program is to enable profiling.
11 // Support for profiling benchmarks built with the standard testing
18 // To add equivalent profiling support to a standalone program, add
52 // There is also a standard HTTP interface to profiling data. Adding
119 // output to a writer during profiling.
697 profiling bool
701 // StartCPUProfile enables CPU profiling for the current process
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
Android.mk 50 $(warning Making profiling version of native library)
77 $(warning Making profiling version of native library)

Completed in 1208 milliseconds

1 2 3 4 5 6 7 8 9