/external/perfetto/src/base/test/ |
benchmark_main.cc | 15 #include "benchmark/benchmark.h"
|
/external/perfetto/test/ |
benchmark_main.cc | 15 #include "benchmark/benchmark.h"
|
/external/python/cpython3/Modules/_decimal/tests/ |
README.txt | 3 This directory contains extended tests and a benchmark against decimal.py: 5 bench.py -> Benchmark for small and large precisions.
|
/external/v8/benchmarks/ |
base.js | 29 // Simple framework for running the benchmark suites and 33 // A benchmark has a name (string) and a function that will be run to 36 // running the benchmark, but the running time of these functions will 37 // not be accounted for in the benchmark score. 38 function Benchmark(name, run, setup, tearDown) { 46 // Benchmark results hold the benchmark and the measured time used to 47 // run the benchmark. The benchmark score is computed later once a 48 // full benchmark suite has run to completion [all...] |
README.txt | 1 V8 Benchmark Suite 4 This is the V8 benchmark suite: A collection of pure JavaScript 8 In addition to the benchmarks, the suite consists of the benchmark 10 benchmark files, and two benchmark runners: An HTML version (run.html) 17 For version 2 the crypto benchmark was fixed. Previously, the 22 are reset for each iteration of the benchmark. In addition, the size 35 Version 3 adds a new benchmark, RegExp. The RegExp benchmark is 48 The Splay benchmark is a newcomer in version 4. It manipulates [all...] |
revisions.html | 3 <title>V8 Benchmark Suite Revisions</title> 8 <div class="title"><h1>V8 Benchmark Suite Revisions</h1></div> 15 The V8 benchmark suite is changed from time to time as we fix bugs or 17 a description of the changes made. Note that benchmark results are 19 the benchmark suite. 24 <p>This version includes the new Navier-Stokes benchmark, a 2D differential 29 <p>Removed dead code from the RayTrace benchmark and fixed a couple of 30 typos in the DeltaBlue implementation. Changed the Splay benchmark to 34 benchmark to exercise the regular expression engine on different input 37 <p>Furthermore, the benchmark runner was changed to run the benchmark [all...] |
/frameworks/base/cmds/statsd/benchmark/ |
main.cpp | 17 #include <benchmark/benchmark.h>
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/ |
colorprint.h | 8 namespace benchmark { namespace 31 } // end namespace benchmark
|
/system/netd/tests/benchmarks/ |
main.cpp | 17 #include <benchmark/benchmark.h>
|
/external/tensorflow/tensorflow/tools/ci_build/builds/ |
benchmark.sh | 17 # Runs benchmark tests. 18 # After the completion of each benchmark test, the script calls a hook binary, 23 # Usage: benchmark [-c opt] 30 # info after the completion of each benchmark test. 35 echo "====== Benchmark tests start ======" 52 BENCHMARK_TAG="benchmark-test" 57 echo "ERROR: Cannot find any benchmark tests with the tag "\ 64 echo "Discovered ${N_TESTS} benchmark test(s) with the tag \"${BENCHMARK_TAG}\":" 73 # Iterate through the benchmark tests 78 echo "Running benchmark test (${COUNTER} / ${N_TESTS}): ${BENCHMARK_TEST} [all...] |
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/ |
register_benchmark_test.cc | 7 #include "benchmark/benchmark.h" 11 class TestReporter : public benchmark::ConsoleReporter { 29 typedef benchmark::BenchmarkReporter::Run Run; 58 typedef benchmark::internal::Benchmark* ReturnVal; 63 void BM_function(benchmark::State& state) { 67 BENCHMARK(BM_function); 68 ReturnVal dummy = benchmark::RegisterBenchmark( 79 void BM_extra_args(benchmark::State& st, const char* label) [all...] |
/external/google-benchmark/test/ |
register_benchmark_test.cc | 7 #include "benchmark/benchmark.h" 11 class TestReporter : public benchmark::ConsoleReporter { 29 typedef benchmark::BenchmarkReporter::Run Run; 58 typedef benchmark::internal::Benchmark* ReturnVal; 63 void BM_function(benchmark::State& state) { 67 BENCHMARK(BM_function); 68 ReturnVal dummy = benchmark::RegisterBenchmark( 79 void BM_extra_args(benchmark::State& st, const char* label) [all...] |
/external/libcxx/utils/google-benchmark/test/ |
register_benchmark_test.cc | 7 #include "benchmark/benchmark.h" 11 class TestReporter : public benchmark::ConsoleReporter { 29 typedef benchmark::BenchmarkReporter::Run Run; 58 typedef benchmark::internal::Benchmark* ReturnVal; 63 void BM_function(benchmark::State& state) { 67 BENCHMARK(BM_function); 68 ReturnVal dummy = benchmark::RegisterBenchmark( 79 void BM_extra_args(benchmark::State& st, const char* label) [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/ |
Benchmark.java | 26 * Annotation for benchmark methods. To write a benchmark: 37 * available timers, benchmark methods <i>may</i> take either an {@code int} or {@code long} 39 * that the work done in the benchmark method scale linearly to the number of repetitions. 41 * <p>Benchmark methods may return any value. It will be ignored. 56 * {@literal @}Benchmark int foo(int reps) { 66 * {@literal @}Benchmark int bar() { 67 * // benchmark another operation of MyObject that doesn't require a reps parameter 72 * <p>The benchmark class MyBenchmark has two benchmark methods ({@code foo} and {@code bar}) an [all...] |
/bionic/benchmarks/ |
stdlib_benchmark.cpp | 22 #include <benchmark/benchmark.h> 25 static void BM_stdlib_malloc_free(benchmark::State& state) { 38 static void BM_stdlib_mbstowcs(benchmark::State& state) { 81 static void BM_stdlib_mbrtowc(benchmark::State& state) { 122 void BM_stdlib_atoi(benchmark::State& state) { 124 benchmark::DoNotOptimize(atoi(" -123")); 129 void BM_stdlib_atol(benchmark::State& state) { 131 benchmark::DoNotOptimize(atol(" -123")); 136 void BM_stdlib_strtol(benchmark::State& state) [all...] |
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
MalformedBenchmarksTest.java | 22 import com.google.caliper.Benchmark; 37 * Unit test covering common user mistakes in benchmark classes. 48 "Benchmark class %s does not have a publicly visible default constructor"; 53 "Benchmark methods must not be static: timeIt"; 55 "Benchmark methods must have no arguments or accept a single int or long parameter: timeIt"; 78 @Benchmark void timeIt(int reps) {} 96 @Benchmark public static void timeIt(int reps) {} 106 @Benchmark void timeIt(Integer reps) {} 111 @Benchmark void timeIt(int reps, int what) {} 115 // N.B. baz is fine since although it has an overload, its overload is not a benchmark method [all...] |
/external/tensorflow/tensorflow/core/kernels/ |
cast_op_test.cc | 99 test::Benchmark("cpu", Cast<float, int64>(num)).Run(iters); 101 BENCHMARK(BM_cpu_float_int64)->Arg(64 << 10)->Arg(32 << 20); 109 test::Benchmark("gpu", Cast<float, int64>(num)).Run(iters); 112 test::Benchmark("sycl", Cast<float, int64>(num)).Run(iters); 115 BENCHMARK(BM_gpu_float_int64)->Arg(64 << 10)->Arg(32 << 20); 122 test::Benchmark("cpu", Cast<bool, float>(num)).Run(iters); 124 BENCHMARK(BM_cpu_bool_float)->Arg(64 << 10)->Arg(32 << 20); 132 test::Benchmark("gpu", Cast<bool, float>(num)).Run(iters); 135 test::Benchmark("sycl", Cast<bool, float>(num)).Run(iters); 138 BENCHMARK(BM_gpu_bool_float)->Arg(64 << 10)->Arg(32 << 20) [all...] |
/external/tensorflow/tensorflow/core/platform/default/ |
test_benchmark.cc | 31 static std::vector<Benchmark*>* all_benchmarks = nullptr; 39 Benchmark::Benchmark(const char* name, void (*fn)(int)) 45 Benchmark::Benchmark(const char* name, void (*fn)(int, int)) 50 Benchmark::Benchmark(const char* name, void (*fn)(int, int, int)) 55 Benchmark* Benchmark::Arg(int x) { 61 Benchmark* Benchmark::ArgPair(int x, int y) [all...] |
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/ |
BenchmarkState.java | 31 * Provides a benchmark framework. 52 private static final int NOT_STARTED = 0; // The benchmark has not started yet. 53 private static final int WARMUP = 1; // The benchmark is warming up. 54 private static final int RUNNING = 2; // The benchmark is running. 55 private static final int FINISHED = 3; // The benchmark has stopped. 57 private int mState = NOT_STARTED; // Current benchmark state. 78 // Statistics. These values will be filled when the benchmark has finished. 89 // Stops the benchmark timer. 94 "Unable to pause the benchmark. The benchmark has already paused.") [all...] |
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/registry/ |
BenchmarkRegistry.java | 17 package com.android.benchmark.registry; 32 import com.android.benchmark.R; 45 /** Metadata key for benchmark XML data */ 47 "com.android.benchmark.benchmark_group"; 49 /** Intent action specifying an activity that runs a single benchmark test. */ 50 private static final String ACTION_BENCHMARK = "com.android.benchmark.ACTION_BENCHMARK"; 51 public static final String EXTRA_ID = "com.android.benchmark.EXTRA_ID"; 53 private static final String TAG_BENCHMARK_GROUP = "com.android.benchmark.BenchmarkGroup"; 54 private static final String TAG_BENCHMARK = "com.android.benchmark.Benchmark"; 140 BenchmarkGroup.Benchmark benchmark = new BenchmarkGroup.Benchmark( local [all...] |
/build/make/core/ |
native_benchmark.mk | 7 LOCAL_STATIC_LIBRARIES += libgoogle-benchmark
|
/external/autotest/client/site_tests/graphics_SanAngeles/ |
control | 7 PURPOSE = 'Benchmark OpenGL object rendering.' 8 CRITERIA = 'This test is a benchmark. It will fail if it fails to complete.' 21 This test runs the San Angeles Observation GPU benchmark. This benchmark uses
|
control.bvt | 7 PURPOSE = 'Benchmark OpenGL object rendering.' 8 CRITERIA = 'This test is a benchmark. It will fail if it fails to complete.' 22 This test runs the San Angeles Observation GPU benchmark. This benchmark uses
|
/external/autotest/client/site_tests/kernel_Lmbench/ |
control | 6 TEST_CATEGORY = "Benchmark"
|
/external/autotest/client/tests/interbench/ |
control | 3 TEST_CATEGORY = "Benchmark"
|