HomeSort by relevance Sort by last modified time
    Searched full:benchmark (Results 326 - 350 of 2250) sorted by null

<<11121314151617181920>>

  /tools/tradefederation/core/src/com/android/tradefed/testtype/
NativeBenchmarkTest.java 38 * A Test that runs a native benchmark test executable on given device.
43 @OptionClass(alias = "native-benchmark")
55 @Option(name = "native-benchmark-device-path",
59 @Option(name = "benchmark-module-name",
60 description="The name of the native benchmark test module to run. " +
61 "If not specified all tests in --native-benchmark-device-path will be run.")
64 @Option(name = "benchmark-run-name",
66 "--benchmark-module-name.")
70 description="The number of benchmark test iterations per run.")
74 description="The delay between each benchmark iteration, in micro seconds."
    [all...]
  /external/skia/bench/
ImageFilterDAGBench.cpp 8 #include "Benchmark.h"
21 class ImageFilterDAGBench : public Benchmark {
48 typedef Benchmark INHERITED;
51 class ImageMakeWithFilterDAGBench : public Benchmark {
87 typedef Benchmark INHERITED;
92 class ImageFilterDisplacedBlur : public Benchmark {
118 typedef Benchmark INHERITED;
122 class ImageFilterXfermodeIn : public Benchmark {
144 typedef Benchmark INHERITED;
  /external/skqp/bench/
ImageFilterDAGBench.cpp 8 #include "Benchmark.h"
21 class ImageFilterDAGBench : public Benchmark {
48 typedef Benchmark INHERITED;
51 class ImageMakeWithFilterDAGBench : public Benchmark {
87 typedef Benchmark INHERITED;
92 class ImageFilterDisplacedBlur : public Benchmark {
118 typedef Benchmark INHERITED;
122 class ImageFilterXfermodeIn : public Benchmark {
144 typedef Benchmark INHERITED;
  /frameworks/base/libs/hwui/tests/microbench/
FrameBuilderBench.cpp 17 #include <benchmark/benchmark.h>
61 void BM_FrameBuilder_defer(benchmark::State& state) {
68 benchmark::DoNotOptimize(&frameBuilder);
72 BENCHMARK(BM_FrameBuilder_defer);
74 void BM_FrameBuilder_deferAndRender(benchmark::State& state) {
87 benchmark::DoNotOptimize(&renderer);
91 BENCHMARK(BM_FrameBuilder_deferAndRender);
114 void BM_FrameBuilder_defer_scene(benchmark::State& state) {
123 benchmark::DoNotOptimize(&frameBuilder)
    [all...]
  /external/google-benchmark/docs/
tools.md 0 # Benchmark Tools
9 $ compare_bench.py <old-benchmark> <new-benchmark> [benchmark options]...
12 Where `<old-benchmark>` and `<new-benchmark>` either specify a benchmark executable file, or a JSON output file. The type of the input file is automatically detected. If a benchmark executable is specified then the benchmark is run to obtain the results. Otherwise the results are simply loaded from the output file.
14 `[benchmark options]` will be passed to the benchmarks invocations. They can be anything that binary accepts, (…)
    [all...]
  /external/libcxx/utils/google-benchmark/docs/
tools.md 0 # Benchmark Tools
9 $ compare_bench.py <old-benchmark> <new-benchmark> [benchmark options]...
12 Where `<old-benchmark>` and `<new-benchmark>` either specify a benchmark executable file, or a JSON output file. The type of the input file is automatically detected. If a benchmark executable is specified then the benchmark is run to obtain the results. Otherwise the results are simply loaded from the output file.
14 `[benchmark options]` will be passed to the benchmarks invocations. They can be anything that binary accepts, (…)
    [all...]
  /external/autotest/server/site_tests/telemetry_AFDOGenerate/
telemetry_AFDOGenerate.py 55 # Temporarily disable this benchmark because it is failing a
106 benchmark = benchmark_info[0]
109 self._run_test_with_retry(benchmark, *args)
114 logging.info('Ignoring failure from benchmark %s.',
115 benchmark)
186 def _run_test(self, benchmark, *args):
187 """Run the benchmark using Telemetry.
189 @param benchmark: Name of the benchmark to run.
193 Also re-raise any exceptions thrown by run_telemetry benchmark
    [all...]
  /external/tensorflow/tensorflow/python/platform/
benchmark.py 39 # When a subclass of the Benchmark class is created, it is added to
51 """Method for recording a benchmark directly.
59 extras: (optional) Dict mapping string keys to additional benchmark info.
63 IOError: if the benchmark output file already exists.
69 logging.info("Benchmark [%s] iters: %d, wall_time: %g, cpu_time: %g,"
110 """The Benchmark class registrar. Used by abstract Benchmark class."""
120 class Benchmark(six.with_metaclass(_BenchmarkRegistrar, object)):
124 benchmark registry.
126 Only methods whose names start with the word "benchmark" will be run durin
    [all...]
  /external/caliper/examples/src/main/java/examples/
IntModBenchmark.java 19 import com.google.caliper.Benchmark;
28 @Benchmark int conditional(int reps) {
41 @Benchmark int doubleRemainder(int reps) {
54 @Benchmark int rightShiftingMod(int reps) {
68 @Benchmark int leftShiftingMod(int reps) {
81 @Benchmark int wrongMod(int reps) {
ListModificationBenchmark.java 20 import com.google.caliper.Benchmark;
66 @Benchmark void populate(int reps) throws Exception {
75 @Benchmark void iteration(int reps) {
84 @Benchmark void headAddRemove(int reps) {
91 @Benchmark void middleAddRemove(int reps) {
99 @Benchmark void tailAddRemove(int reps) {
CharacterBenchmark.java 20 import com.google.caliper.Benchmark;
53 // A fake benchmark to give us a baseline.
54 @Benchmark boolean isSpace(int reps) {
72 @Benchmark void digit(int reps) {
88 @Benchmark void getNumericValue(int reps) {
104 @Benchmark void isDigit(int reps) {
120 @Benchmark void isIdentifierIgnorable(int reps) {
136 @Benchmark void isJavaIdentifierPart(int reps) {
152 @Benchmark void isJavaIdentifierStart(int reps) {
168 @Benchmark void isLetter(int reps)
    [all...]
  /external/conscrypt/benchmark-android/src/main/java/org/conscrypt/
CaliperEngineHandshakeBenchmark.java 36 import com.google.caliper.Benchmark;
41 * Benchmark comparing handshake performance of various engine implementations.
56 private EngineHandshakeBenchmark benchmark; field in class:CaliperEngineHandshakeBenchmark
60 benchmark = new EngineHandshakeBenchmark(config);
63 @Benchmark
66 benchmark.handshake();
  /external/guava/guava-tests/benchmark/com/google/common/base/
ObjectsBenchmark.java 19 import com.google.caliper.Benchmark;
40 @Benchmark int hashString_2(int reps) {
48 @Benchmark int hashString_3(int reps) {
56 @Benchmark int hashString_4(int reps) {
64 @Benchmark int hashString_5(int reps) {
72 @Benchmark int hashMixed_5(int reps) {
  /external/guava/guava-tests/benchmark/com/google/common/collect/
ImmutableListCreationBenchmark.java 19 import com.google.caliper.Benchmark;
25 * Benchmark for various ways to create an {@code ImmutableList}.
36 @Benchmark int builderAdd(int reps) {
49 @Benchmark int preSizedBuilderAdd(int reps) {
62 @Benchmark int copyArrayList(int reps) {
75 @Benchmark int copyPreSizedArrayList(int reps) {
  /external/guava/guava-tests/benchmark/com/google/common/hash/
ChecksumBenchmark.java 20 import com.google.caliper.Benchmark;
31 * <p>Parameters for the benchmark are: <ul> <li>size: The length of the byte array to hash. </ul>
53 @Benchmark byte crc32HashFunction(int reps) {
57 @Benchmark byte crc32Checksum(int reps) throws Exception {
69 @Benchmark byte adler32HashFunction(int reps) {
73 @Benchmark byte adler32Checksum(int reps) throws Exception {
  /external/vogar/test/vogar/target/caliper/
TestRunnerCaliperTest.java 19 import com.google.caliper.Benchmark;
56 + " Benchmark Methods: [failingBenchmark]\n"
64 + ": An exception was thrown from the benchmark code\n"
72 @Benchmark
81 static final String BENCHMARK_FAILED = "Benchmark failed";
83 @Benchmark
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
RunLocalBenchmarksActivity.java 17 package com.android.benchmark.app;
35 import com.android.benchmark.R;
36 import com.android.benchmark.registry.BenchmarkGroup;
37 import com.android.benchmark.registry.BenchmarkRegistry;
38 import com.android.benchmark.results.GlobalResultsStore;
39 import com.android.benchmark.results.UiBenchmarkResult;
40 import com.android.benchmark.synthetic.MemoryActivity;
41 import com.android.benchmark.ui.BitmapUploadActivity;
42 import com.android.benchmark.ui.EditTextInputActivity;
43 import com.android.benchmark.ui.FullScreenOverdrawActivity
274 LocalBenchmark benchmark = mBenchmarksToRun.get(mBenchmarkCursor); local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
reduction_ops_test.cc 92 test::Benchmark(device, ToScalar<T>(reduce, num_x, num_y)).Run(iters);
100 test::Benchmark(device, RowReduce(reduce, num_x, num_y)).Run(iters);
108 test::Benchmark(device, ColReduce(reduce, num_x, num_y)).Run(iters);
116 test::Benchmark(device, ThreeDYReduce(reduce, num_x, num_y)).Run(iters);
124 test::Benchmark(device, ThreeDXZReduce(reduce, num_x, num_y)).Run(iters);
130 BENCHMARK(BM_Sum2DToScalarGPU)->RangePair(1, 8192, 1, 8192);
135 BENCHMARK(BM_Sum2DToScalarGPUComplex)->RangePair(1, 8192, 1, 8192);
140 BENCHMARK(BM_Sum2DToScalarGPUHalf)->RangePair(1, 8192, 1, 8192);
145 BENCHMARK(BM_Sum2DRowReduceGPU)->RangePair(1, 8192, 1, 8192);
150 BENCHMARK(BM_Sum2DColumnReduceGPU)->RangePair(1, 8192, 1, 8192)
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
benchmark_test.py 27 from tensorflow.python.platform import benchmark
37 class SomeRandomBenchmark(test.Benchmark):
38 """This Benchmark should automatically be registered in the registry."""
53 class TestReportingBenchmark(test.Benchmark):
54 """This benchmark (maybe) reports some stuff."""
77 registry = list(benchmark.GLOBAL_BENCHMARK_REGISTRY)
89 benchmark._run_benchmarks("unrelated")
97 if benchmark.TEST_REPORTER_TEST_ENV in os.environ:
98 del os.environ[benchmark.TEST_REPORTER_TEST_ENV]
99 benchmark._run_benchmarks("SomeRandom"
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
RuntimeWorker.java 24 import com.google.caliper.runner.Running.Benchmark;
51 RuntimeWorker(Object benchmark,
54 super(benchmark, method);
104 @Inject Micro(@Benchmark Object benchmark,
107 super(benchmark, method, random, ticker, workerOptions);
116 + "Otherwise, check your benchmark for errors.",
117 benchmark.getClass(), benchmarkMethod.getName(),
121 benchmarkMethod.invoke(benchmark, intReps);
130 @Inject Pico(@Benchmark Object benchmark,
    [all...]
  /external/eigen/bench/tensors/
benchmark_main.cc 16 #include "benchmark.h"
29 typedef std::map<std::string, ::testing::Benchmark*> BenchmarkMap;
74 Benchmark* Benchmark::Arg(int arg) {
79 Benchmark* Benchmark::Range(int lo, int hi) {
95 const char* Benchmark::Name() {
98 bool Benchmark::ShouldRun(int argc, char* argv[]) {
118 void Benchmark::Register(const char* name, void (*fn)(int), void (*fn_range)(int, int)) {
128 void Benchmark::Run()
    [all...]
  /external/autotest/client/site_tests/graphics_GLMark2/
control 7 PURPOSE = 'Benchmark the graphics library performance.'
20 glmark2 is a benchmark for OpenGL (ES) 2.0. It uses only the subset of the
  /external/autotest/client/site_tests/power_BatteryCharge/
control 8 CRITERIA = "This test is a benchmark."
10 TEST_CATEGORY = "Benchmark"
  /external/autotest/client/site_tests/power_LoadTest/
control.WIRED_1hr_acok 9 CRITERIA = "This test is a benchmark."
11 TEST_CATEGORY = "Benchmark"
  /external/autotest/client/tests/bonnie/
control 8 Bonnie is a benchmark which measures the performance of Unix file system
14 This benchmark configuration run generates sustained write traffic

Completed in 525 milliseconds

<<11121314151617181920>>