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

1 2 3 4 5 6 7 8 91011>>

  /external/caliper/examples/src/main/java/examples/
NoOpBenchmark.java 19 import com.google.caliper.Benchmark;
22 * This is the absolute minimal benchmark. It does nothing but time the rep loop.
25 @Benchmark long increment(long reps) {
MessageDigestCreationBenchmark.java 19 import com.google.caliper.Benchmark;
33 @Benchmark void time(int reps) throws Exception {
ExpensiveObjectsBenchmark.java 19 import com.google.caliper.Benchmark;
30 @Benchmark void newDecimalFormatSymbols(int reps) {
36 @Benchmark void clonedDecimalFormatSymbols(int reps) {
43 @Benchmark void newNumberFormat(int reps) {
49 @Benchmark void clonedNumberFormat(int reps) {
56 @Benchmark void newSimpleDateFormat(int reps) {
62 @Benchmark void clonedSimpleDateFormat(int reps) {
FormatterBenchmark.java 19 import com.google.caliper.Benchmark;
26 @Benchmark void formatter_NoFormatting(int reps) {
34 @Benchmark void stringBuilder_NoFormatting(int reps) {
41 @Benchmark void formatter_OneInt(int reps) {
49 @Benchmark void stringBuilder_OneInt(int reps) {
58 @Benchmark void formatter_OneString(int reps) {
66 @Benchmark void stringBuilder_OneString(int reps) {
LoopingBackwardsBenchmark.java 19 import com.google.caliper.Benchmark;
28 @Benchmark int forwards(int reps) {
38 @Benchmark int backwards(int reps) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/bench/
x_test.go 5 func Benchmark(b *testing.B) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/
standalone_benchmark_test.go 5 func Benchmark(b *testing.B) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/bench/
x_test.go 5 func Benchmark(b *testing.B) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/
standalone_benchmark_test.go 5 func Benchmark(b *testing.B) {
  /external/skia/bench/
Benchmark.cpp 8 #include "Benchmark.h"
18 Benchmark::Benchmark() {
24 const char* Benchmark::getName() {
28 const char* Benchmark::getUniqueName() {
32 SkIPoint Benchmark::getSize() {
36 void Benchmark::delayedSetup() {
40 void Benchmark::perCanvasPreDraw(SkCanvas* canvas) {
44 void Benchmark::preDraw(SkCanvas* canvas) {
48 void Benchmark::postDraw(SkCanvas* canvas)
    [all...]
  /external/skqp/bench/
Benchmark.cpp 8 #include "Benchmark.h"
18 Benchmark::Benchmark() {
24 const char* Benchmark::getName() {
28 const char* Benchmark::getUniqueName() {
32 SkIPoint Benchmark::getSize() {
36 void Benchmark::delayedSetup() {
40 void Benchmark::perCanvasPreDraw(SkCanvas* canvas) {
44 void Benchmark::preDraw(SkCanvas* canvas) {
48 void Benchmark::postDraw(SkCanvas* canvas)
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentComponent.java 19 import static com.google.caliper.runner.Running.Benchmark;
24 * Provides access to the benchmark instance to use for the experiment.
28 @Benchmark Object getBenchmarkInstance();
  /external/tensorflow/tensorflow/compiler/aot/
benchmark_test.cc 16 #include "tensorflow/compiler/aot/benchmark.h"
23 namespace benchmark { namespace in namespace:tensorflow::tfcompile
27 // benchmark with max_iters, and ensure we end up with that many iter stats.
28 TEST(Benchmark, Benchmark) {
34 Benchmark(options, [&] { add.Run(); }, &stats1);
39 Benchmark(options, [&] { add.Run(); }, &stats5);
44 } // namespace benchmark
  /external/tensorflow/tensorflow/core/platform/
test_benchmark.h 27 #include "tensorflow/core/platform/google/build_config/benchmark.h"
30 #define BENCHMARK(n) \
31 static ::tensorflow::testing::Benchmark* TF_BENCHMARK_CONCAT( \
33 (new ::tensorflow::testing::Benchmark(#n, (n)))
44 using ::testing::Benchmark;
48 class Benchmark {
50 Benchmark(const char* name, void (*fn)(int));
51 Benchmark(const char* name, void (*fn)(int, int));
52 Benchmark(const char* name, void (*fn)(int, int, int));
54 Benchmark* Arg(int x)
    [all...]
  /external/eigen/bench/tensors/
benchmark.h 21 class Benchmark {
23 Benchmark(const char* name, void (*fn)(int)) {
26 Benchmark(const char* name, void (*fn_range)(int, int)) {
29 Benchmark* Arg(int x);
30 Benchmark* Range(int lo, int hi);
47 #define BENCHMARK(f) \
48 static ::testing::Benchmark* _benchmark_##f __attribute__((unused)) = \
49 (new ::testing::Benchmark(#f, f))
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_bench.cc 25 static void Benchmark() {
36 Benchmark<uint8_t, noinstr>();
40 Benchmark<uint8_t, __tsan_read1>();
44 Benchmark<uint8_t, __tsan_write1>();
48 Benchmark<uint16_t, noinstr>();
52 Benchmark<uint16_t, __tsan_read2>();
56 Benchmark<uint16_t, __tsan_write2>();
60 Benchmark<uint32_t, noinstr>();
64 Benchmark<uint32_t, __tsan_read4>();
68 Benchmark<uint32_t, __tsan_write4>()
    [all...]
  /external/google-benchmark/src/
benchmark_register.cc 15 #include "benchmark/benchmark.h"
47 namespace benchmark { namespace
52 // The size of a benchmark family determines is the number of inputs to repeat
53 // the benchmark on. If this is "large" then warn the user during configuration.
64 // benchmark identifies a family of related benchmarks to run.
69 // Registers a benchmark family and returns the index assigned to it.
70 size_t AddBenchmark(std::unique_ptr<Benchmark> family);
72 // Clear all registered benchmark families.
75 // Extract the list of benchmark instances that match the specifie
    [all...]
  /external/libcxx/utils/google-benchmark/src/
benchmark_register.cc 15 #include "benchmark/benchmark.h"
47 namespace benchmark { namespace
52 // The size of a benchmark family determines is the number of inputs to repeat
53 // the benchmark on. If this is "large" then warn the user during configuration.
64 // benchmark identifies a family of related benchmarks to run.
69 // Registers a benchmark family and returns the index assigned to it.
70 size_t AddBenchmark(std::unique_ptr<Benchmark> family);
72 // Clear all registered benchmark families.
75 // Extract the list of benchmark instances that match the specifie
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
kernel_benchmark_testlib.h 36 class Benchmark {
40 Benchmark(const string& device, Graph* g,
43 ~Benchmark();
51 // the graph. In the benchmark, we throw away values returned by the
62 TF_DISALLOW_COPY_AND_ASSIGN(Benchmark);
local_device.h 26 class Benchmark;
50 friend class test::Benchmark;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
benchmark_register.cc 15 #include "benchmark/benchmark.h"
47 namespace benchmark { namespace
52 // The size of a benchmark family determines is the number of inputs to repeat
53 // the benchmark on. If this is "large" then warn the user during configuration.
64 // benchmark identifies a family of related benchmarks to run.
69 // Registers a benchmark family and returns the index assigned to it.
70 size_t AddBenchmark(std::unique_ptr<Benchmark> family);
72 // Extract the list of benchmark instances that match the specified
75 std::vector<Benchmark::Instance>* benchmarks
    [all...]
  /hardware/interfaces/tests/libhwbinder/1.0/default/
Benchmark.cpp 3 #include "Benchmark.h"
12 Return<void> Benchmark::sendVec(
20 return new Benchmark();
  /external/toolchain-utils/crosperf/
benchmark_unittest.py 4 """Unit tests for the Crosperf Benchmark class."""
9 from benchmark import Benchmark
15 """Individual tests for the Benchmark class."""
18 # Test creating a benchmark with all the fields filled out.
19 b1 = Benchmark(
30 # Test creating a benchmark field with default fields left out.
31 b2 = Benchmark(
43 b3 = Benchmark(
54 # Check to see if the args to Benchmark have changed since the last tim
    [all...]
  /external/caliper/tutorial/
Tutorial.java 20 import com.google.caliper.Benchmark;
30 * We begin the Caliper tutorial with the simplest benchmark you can write.
35 * - We write a class that extends com.google.caliper.Benchmark.
48 * Benchmark ns
53 @Benchmark void timeNanoTime(int reps) {
68 * Benchmark ns
74 @Benchmark void timeNanoTime(int reps) {
79 @Benchmark void timeCurrentTimeMillis(int reps) {
94 @Benchmark void timeArrayIteration_BAD(int reps) {
102 * Caliper reported that the benchmark above ran in 4 nanoseconds
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/base/
StopwatchBenchmark.java 19 import com.google.caliper.Benchmark;
25 * Simple benchmark: create, start, read. This does not currently report the
27 * benchmark is being affected by GC.
32 @Benchmark long stopwatch(int reps) {
42 @Benchmark long manual(int reps) {

Completed in 374 milliseconds

1 2 3 4 5 6 7 8 91011>>