HomeSort by relevance Sort by last modified time
    Searched defs:benchmark (Results 126 - 150 of 191) sorted by null

1 2 3 4 56 7 8

  /external/google-benchmark/src/
string_util.cc 12 namespace benchmark { namespace
172 } // end namespace benchmark
  /external/libcxx/utils/google-benchmark/src/
mutex.h 67 namespace benchmark { namespace
153 } // end namespace benchmark
string_util.cc 12 namespace benchmark { namespace
172 } // end namespace benchmark
  /external/protobuf/benchmarks/
ProtoBench.java 60 System.err.println("e.g. com.google.protocolbuffers.benchmark.Message1");
104 benchmark("Serialize to byte string", inputData.length, new Action() {
107 benchmark("Serialize to byte array", inputData.length, new Action() {
110 benchmark("Serialize to memory stream", inputData.length, new Action() {
116 benchmark("Serialize to /dev/null with FileOutputStream", inputData.length, new Action() {
121 benchmark("Serialize to /dev/null reusing FileOutputStream", inputData.length, new Action() {
128 benchmark("Deserialize from byte string", inputData.length, new Action() {
133 benchmark("Deserialize from byte array", inputData.length, new Action() {
139 benchmark("Deserialize from memory stream", inputData.length, new Action() {
156 private static void benchmark(String name, long dataSize, Action action) throws IOException method in class:ProtoBench
    [all...]
  /external/tensorflow/tensorflow/compiler/aot/
benchmark.cc 16 // The purpose of the benchmark library is to support building an aot binary
21 #include "tensorflow/compiler/aot/benchmark.h"
35 namespace benchmark { namespace in namespace:tensorflow::tfcompile
104 printf("Benchmark ran %zu iterations over %lld us\n", count_us,
112 void Benchmark(const Options& options, const BenchmarkFn& fn, Stats* stats) {
117 printf("Running benchmark for %lld us\n", max_us);
136 } // namespace benchmark
  /external/v8/tools/
parser-shell.cc 137 std::string benchmark; local
146 } else if (strncmp(argv[i], "--benchmark=", 12) == 0) {
147 benchmark = std::string(argv[i]).substr(12);
176 if (benchmark.empty()) benchmark = "Baseline";
177 printf("%s(FirstParseRunTime): %.f ms\n", benchmark.c_str(),
179 printf("%s(SecondParseRunTime): %.f ms\n", benchmark.c_str(),
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
HomeActivity.java 17 package com.android.benchmark.app;
34 import com.android.benchmark.registry.BenchmarkRegistry;
35 import com.android.benchmark.R;
36 import com.android.benchmark.results.GlobalResultsStore;
PerfTimeline.java 17 package com.android.benchmark.app;
26 import com.android.benchmark.R;
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/registry/
BenchmarkGroup.java 17 package com.android.benchmark.registry;
29 "com.android.benchmark.EXTRA_ENABLED_BENCHMARK_IDS";
32 "com.android.benchmark.EXTRA_RUN_COUNT";
33 public static final String BENCHMARK_EXTRA_FINISH = "com.android.benchmark.FINISH_WHEN_DONE";
35 public static class Benchmark implements CheckBox.OnClickListener {
36 /** The name of this individual benchmark test */
39 /** The category of this individual benchmark test */
42 /** Human-readable description of the benchmark */
49 Benchmark(int id, String name, @BenchmarkCategory int category, String description) {
76 * Component for this benchmark group
    [all...]
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/synthetic/
MemoryActivity.java 17 package com.android.benchmark.synthetic;
28 import com.android.benchmark.R;
29 import com.android.benchmark.app.PerfTimeline;
48 resultIntent.putExtra("com.android.benchmark.synthetic.TEST_RESULT", result);
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/
BitmapUploadActivity.java 17 package com.android.benchmark.ui;
34 import com.android.benchmark.R;
35 import com.android.benchmark.ui.automation.Automator;
36 import com.android.benchmark.ui.automation.Interaction;
124 final int runId = getIntent().getIntExtra("com.android.benchmark.RUN_ID", 0);
125 final int iteration = getIntent().getIntExtra("com.android.benchmark.ITERATION", -1);
ImageListViewScrollActivity.java 17 package com.android.benchmark.ui;
29 import com.android.benchmark.R;
Utils.java 17 package com.android.benchmark.ui;
  /frameworks/ml/nn/runtime/test/benchmark/src/com/example/android/nn/benchmark/
NNTest.java 17 package com.example.android.nn.benchmark;
26 import com.example.android.nn.benchmark.NNTestList.TestName;
29 * NNAPI benchmark test.
32 * adb shell am instrument -w com.example.android.nn.benchmark/android.support.test.runner.AndroidJUnitRunner
72 "Benchmark for test \"" + mTestName.toString() + "\" is: " + mResult);
82 // Set the benchmark thread to run on ui thread
83 // Synchronized the thread such that the test will wait for the benchmark thread to finish
NNTestBase.java 17 package com.example.android.nn.benchmark;
  /prebuilts/go/darwin-x86/src/cmd/internal/test2json/
test2json.go 403 var benchmark = []byte("Benchmark") var
405 // isBenchmarkName reports whether b is a valid benchmark name
406 // that might appear as the first field in a benchmark result line.
408 if !bytes.HasPrefix(b, benchmark) {
411 if len(b) == len(benchmark) { // just "Benchmark"
414 r, _ := utf8.DecodeRune(b[len(benchmark):])
  /prebuilts/go/darwin-x86/src/time/
sleep_test.go 84 func benchmark(b *testing.B, bench func(n int)) { func
87 // the benchmark.
119 benchmark(b, func(n int) {
137 benchmark(b, func(n int) {
145 benchmark(b, func(n int) {
153 benchmark(b, func(n int) {
164 benchmark(b, func(n int) {
177 benchmark(b, func(n int) {
187 benchmark(b, func(n int) {
  /prebuilts/go/linux-x86/src/cmd/internal/test2json/
test2json.go 403 var benchmark = []byte("Benchmark") var
405 // isBenchmarkName reports whether b is a valid benchmark name
406 // that might appear as the first field in a benchmark result line.
408 if !bytes.HasPrefix(b, benchmark) {
411 if len(b) == len(benchmark) { // just "Benchmark"
414 r, _ := utf8.DecodeRune(b[len(benchmark):])
  /prebuilts/go/linux-x86/src/time/
sleep_test.go 84 func benchmark(b *testing.B, bench func(n int)) { func
87 // the benchmark.
119 benchmark(b, func(n int) {
137 benchmark(b, func(n int) {
145 benchmark(b, func(n int) {
153 benchmark(b, func(n int) {
164 benchmark(b, func(n int) {
177 benchmark(b, func(n int) {
187 benchmark(b, func(n int) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
mutex.h 67 namespace benchmark { namespace
153 } // end namespace benchmark
stat.h 9 namespace benchmark { namespace
304 } // end namespace benchmark
string_util.cc 12 namespace benchmark { namespace
172 } // end namespace benchmark
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
PerformanceMeasurement.java 30 // this is used to enlarge the benchmark, so that it can be displayed with better accuracy on
64 * then a benchmark and a count on outliers can be produced as a measurement of performance.
65 * The benchmark should be as small as possible, so is the number of outliers.
94 // compute benchmark and count the number of outliers
95 double benchmark = computeWeightedBenchmark(); local
100 log("benchmark: " + benchmark);
127 * Compute a benchmark using the following formula:
130 * Also, the benchmark is additionally multiplied by mMultiplicationFactor. This is not in the
131 * original formula, and it is used only because the original benchmark will be too small t
137 double benchmark; local
    [all...]
  /external/gemmlowp/test/
benchmark.cc 94 // main benchmark loop
141 void benchmark(GemmContext* context) { function in namespace:gemmlowp
345 gemmlowp::benchmark(&context);
352 gemmlowp::benchmark(&context);
benchmark_all_sizes.cc 26 // Minimum duration of each benchmark measurement. Also, duration
27 // of sleep time between each two consecutive benchmark measurements to
31 // Sleep time before each benchmark.
34 // Number of benchmark passes.
223 float benchmark(const Shape& shape) { function
228 // Benchmark the fast 8bit path, using L8R8WithLhsNonzeroBitDepthParams.
254 #error What arithmetic path should we benchmark? (Suggestion: #define BENCHMARK_8bit)
281 // Benchmark one specific shape
288 // Benchmark an assortment of cubic shapes
297 // Benchmark all sorts of shape
    [all...]

Completed in 976 milliseconds

1 2 3 4 56 7 8