HomeSort by relevance Sort by last modified time
    Searched refs:bench (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/skia/bench/
nanobenchAndroid.cpp 12 HWUITarget::HWUITarget(const Config& c, Benchmark* bench) : Target(c) { }
44 bool HWUITarget::init(SkImageInfo info, Benchmark* bench) {
45 this->renderer.initialize(bench->getSize().x(), bench->getSize().y());
bench_compare.py 14 print '-o <file> the old bench output file.'
15 print '-n <file> the new bench output file.'
25 print ' b: bench'
33 print '--match <bench> only matches benches which begin with <bench>.'
36 """A compare between data points produced by bench.
103 if match_bench and not old_bench.bench.startswith(match_bench):
107 new_bench_match = [bench for bench in new_benches
108 if old_bench.bench == bench.bench an
    [all...]
nanobenchAndroid.h 17 explicit HWUITarget(const Config& c, Benchmark* bench);
28 bool init(SkImageInfo info, Benchmark* bench) override;
nanobench.cpp 77 help.printf("Number of times to run each bench. Set this to %d to auto-"
78 "tune for each bench. Timings are only reported when auto-tuning.",
91 DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
92 DEFINE_int32(ms, 0, "If >0, run each bench for this many ms instead of obeying --samples.");
96 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
103 "Try up to this many times to guess loops for a bench, or skip the bench.");
104 DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
121 "Apply usual --match rules to source type: bench, gm, skp, image, etc.");
123 "Apply usual --match rules to bench type: micro, recording, playback, skcodec, etc.")
631 SkAutoTDelete<Benchmark> bench; local
644 Benchmark* bench = fBenches->factory()(nullptr); local
    [all...]
bench_util.py 11 # bench representation algorithm constant names
19 SETTINGS_RE = 'skia bench:((?:\s+' + PER_SETTING_RE + ')*)'
20 BENCH_RE = 'running bench (?:\[\d+ \d+\] )?\s*(\S+)'
24 # per-tile bench lines are in the following format. Note that there are
25 # non-averaged bench numbers in separate lines, which we ignore now due to
41 """A single data point produced by bench.
43 def __init__(self, bench, config, time_type, time, settings,
46 self.bench = bench
51 # float number of the bench time valu
    [all...]
check_bench_regressions.py 21 # Indices for getting elements from bench expectation files.
31 # URL prefix for the bench dashboard page. Showing recent 15 days of data.
37 print '-a <representation_alg> bench representation algorithm to use. '
39 print '-b <builder> name of the builder whose bench data we are checking.'
41 print '-e <file> file containing expected bench builder values/ranges.'
42 print ' Will raise exception if actual bench values are out of range.'
45 print ' bench values.'
52 def __init__(self, bench, config, time_type, settings):
53 self.bench = bench
    [all...]
tile_analyze.py 6 """ Analyze per-tile and viewport bench data, and output visualized results.
34 Note: to read bench data stored in Google Storage, you will need to set up the
40 tile benchmarks for each available picture bench, and output visualization and
52 # Bench representation algorithm flag.
56 # Bench representation algorithm. See trunk/bench/bench_util.py.
59 # Constants for bench file matching.
87 """Reads in bench files of interest into a dictionary.
89 If bench_dir is not empty, tries to read in local bench files; otherwise check
91 non-tile, non-viewport bench files
    [all...]
gen_bench_expectations.py 6 """ Generate bench_expectations file from a given set of bench data files. """
16 # Parameters for calculating bench ranges.
23 # List of bench configs to monitor. Ignore all other configs.
32 # of 3 strings, corresponding to the substrings of [bench, config, builder] to
33 # search for. A bench expectations line is excluded when each of the 3 strings
44 """Given a list of bench numbers, calculate the alert range.
47 benches: a list of float bench values.
48 more_benches: a tuple of lists of additional bench values.
51 bench results.
66 """Convert list of bench data points into a dictionary of expectations data
    [all...]
  /system/extras/tests/memtest/
bandwidth.cpp 93 BandwidthBenchmark *bench = NULL; local
101 bench = new CopyLdrdStrdBenchmark();
103 bench = new CopyLdmiaStmiaBenchmark();
105 bench = new CopyVld1Vst1Benchmark();
107 bench = new CopyVldrVstrBenchmark();
109 bench = new CopyVldmiaVstmiaBenchmark();
111 bench = new MemcpyBenchmark();
113 bench = new WriteStrdBenchmark();
115 bench = new WriteStmiaBenchmark();
117 bench = new WriteVst1Benchmark()
174 BandwidthBenchmark *bench; member in struct:__anon73356
229 BandwidthBenchmark *bench = createBandwidthBenchmarkObject(*values); local
    [all...]
  /external/chromium-trace/catapult/tracing/tracing_build/
benchmarks.py 14 class Bench(object):
33 if g != Bench and inspect.isclass(g) and
34 Bench in inspect.getmro(g)]
39 sys.stderr.write('Bench %r not found.' % args.bench_name)
42 bench = b[0]()
43 bench.SetUp()
48 bench.Run()
58 bench.TearDown()
  /external/compiler-rt/test/tsan/
bench_mutex.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
24 void bench() { function
bench_rwmutex.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
18 void bench() { function
bench_single_writer.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
21 void bench() { function
bench_release_only.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
18 void bench() { function
bench_ten_mutexes.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
22 void bench() { function
bench_local_mutex.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
19 void bench() { function
bench.h 13 void bench(); // defined by user
36 bench();
  /external/eigen/bench/
quatmul.cpp 4 #include <bench/BenchTimer.h>
20 template<typename Quat> void bench(const std::string& label) function
32 BENCH(t, tries, rep, quatmul_default(a,b,c));
35 BENCH(t, tries, rep, quatmul_novec(a,b,c));
41 bench<Quaternionf>("float ");
42 bench<Quaterniond>("double");
geometry.cpp 4 #include <bench/BenchTimer.h>
76 BENCH(timer,10,100000,transform(t,data));
90 EIGEN_DONT_INLINE void bench(const std::string& msg, const Transformation& t) function
118 bench("matrix 3x3", mat33);
119 bench("quaternion", quat);
120 bench("quat-mat ", quatmat);
121 bench("isometry3 ", iso3);
122 bench("affine3 ", aff3);
123 bench("c affine3 ", caff3);
124 bench("proj3 ", proj3)
    [all...]
  /external/skia/tools/kilobench/
kilobench.cpp 53 help.printf("Number of times to run each bench. Set this to %d to auto-"
54 "tune for each bench. Timings are only reported when auto-tuning.",
63 "~ causes a matching bench to always be skipped\n"
64 "^ requires the start of the bench to match\n"
65 "$ requires the end of the bench to match\n"
67 "If a bench does not match any list entry,\n"
70 DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
71 DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
73 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
101 Benchmark* bench = nullptr local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-2185-2.js 122 function bench(name, array) { function
134 bench("random", random);
135 bench("up", asc);
136 bench("down", desc);
137 bench("saw 1000", saw1);
138 bench("saw 500", saw2);
139 bench("saw 200", saw3);
140 bench("saw 200 symmetric", saw4);
141 bench("saw 200 down", saw4);
142 bench("up, down", asc_desc)
    [all...]
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 60 new File(System.getProperty("okio.bench.origin.path", "/dev/urandom"));
208 * in superclasses and move the setup method depending on the bench state
217 public void setupBench(BufferPerformanceBench bench) {
218 super.bench = bench;
223 TimeUnit.MICROSECONDS.sleep(bench.maxThinkMicros);
232 public void setupBench(BufferPerformanceBench bench) {
233 super.bench = bench;
240 BufferPerformanceBench bench; field in class:BufferPerformanceBench.BufferSetup
    [all...]
  /external/skia/tools/VisualBench/
WrappedBenchmark.h 22 // Takes ownership of caller's ref on `bench`.
23 explicit WrappedBenchmark(const SkSurfaceProps& surfaceProps, Benchmark* bench)
25 , fBench(bench) {}
78 explicit CpuWrappedBenchmark(const SkSurfaceProps& surfaceProps, Benchmark* bench)
79 : INHERITED(surfaceProps, bench) {}
100 explicit GpuWrappedBenchmark(const SkSurfaceProps& surfaceProps, Benchmark* bench,
102 : INHERITED(surfaceProps, bench)
  /external/llvm/utils/
Makefile 12 unittest yaml-bench
  /external/eigen/bench/btl/generic_bench/
bench.hh 2 // File : bench.hh
41 BTL_DONT_INLINE void bench( int size_min, int size_max, int nb_point ) function
154 BTL_DONT_INLINE void bench( int size_min, int size_max, int nb_point ){ function
157 bench<Portable_Perf_Analyzer,Action>(size_min,size_max,nb_point);
159 // bench<Mixed_Perf_Analyzer,Action>(size_min,size_max,nb_point);
163 // bench<X86_Perf_Analyzer,Action>(size_min,size_max,nb_point);
164 // bench<STL_Perf_Analyzer,Action>(size_min,size_max,nb_point);

Completed in 263 milliseconds

12 3 4