HomeSort by relevance Sort by last modified time
    Searched defs:REPEAT (Results 1 - 25 of 43) sorted by null

1 2

  /external/eigen/bench/
benchmarkX.cpp 18 #ifndef REPEAT
19 #define REPEAT 100
30 for(int a = 0; a < REPEAT; a++)
benchmark.cpp 14 #ifndef REPEAT
15 #define REPEAT 40000000
32 for(int a = 0; a < REPEAT; a++)
benchmarkXcwise.cpp 17 #ifndef REPEAT
18 #define REPEAT 1000
29 for(int a = 0; a < REPEAT; a++)
benchmarkSlice.cpp 10 #ifndef REPEAT
11 #define REPEAT 10000
24 for(int a = 0; a < REPEAT; a++)
vdw_new.cpp 14 #ifndef REPEAT
15 #define REPEAT 10000
51 for (unsigned int i = 0; i<REPEAT; ++i) {
sparse_transpose.cpp 14 #ifndef REPEAT
15 #define REPEAT 1
32 for (int _k=0; _k<REPEAT; ++_k) { \
54 BENCH(for (int k=0; k<REPEAT; ++k) m3 = m1.transpose();)
63 BENCH(for (int k=0; k<REPEAT; ++k) sm3 = sm1.transpose();)
73 BENCH(for (int k=0; k<REPEAT; ++k) { m3 = cs_transpose(m1,1); cs_spfree(m3);})
84 BENCH(for (int k=0; k<REPEAT; ++k) gmm::copy(gmm::transposed(m1),m3);)
94 BENCH(for (int k=0; k<REPEAT; ++k) m3 = trans(m1);)
bench_reverse.cpp 7 #ifndef REPEAT
8 #define REPEAT 100000
24 int repeats = (REPEAT*1000)/size;
51 << (timerB.value() * REPEAT) / repeats << "s "
sparse_dense_product.cpp 14 #ifndef REPEAT
15 #define REPEAT 1
32 for (int _k=0; _k<REPEAT; ++_k) { \
77 for (int k=0; k<REPEAT; ++k)
80 std::cout << " a * v:\t" << timer.best() << " " << double(REPEAT)/timer.best() << " * / sec " << endl;
84 for (int k=0; k<REPEAT; ++k)
96 std::cout << " a * v:\t" << timer.best()/REPEAT << " " << double(REPEAT)/timer.best(REAL_TIMER) << " * / sec " << endl;
101 std::cout << " a' * v:\t" << timer.best()/REPEAT << endl;
108 // BENCH(for (int k=0; k<REPEAT; ++k) v2 = m1 * v1;
    [all...]
benchCholesky.cpp 18 #ifndef REPEAT
19 #define REPEAT 10000
41 int repeats = (REPEAT*1000)/(rows*rows);
81 << (timerNoSqrt.value() * REPEAT) / repeats << "s "
83 << (timerSqrt.value() * REPEAT) / repeats << "s "
109 << timerSqrt.value() * REPEAT / repeats << "s";
benchEigenSolver.cpp 19 #ifndef REPEAT
20 #define REPEAT 1000
39 int stdRepeats = std::max(1,int((REPEAT*1000)/(rows*rows*sqrt(rows))));
86 << timerSa.value() * REPEAT / saRepeats << "s \t"
87 << timerStd.value() * REPEAT / stdRepeats << "s";
122 << timerSa.value() * REPEAT / saRepeats << "s"
123 << /*timerStd.value() * REPEAT / stdRepeats << "s"*/ " na ";
168 << timerSa.value() * REPEAT / saRepeats << "s \t"
169 << timerStd.value() * REPEAT / stdRepeats << "s";
benchVecAdd.cpp 11 #ifndef REPEAT
12 #define REPEAT 10000
43 std::cout << timer.value() << "s " << (double(size2*REPEAT)/timer.value())/(1024.*1024.*1024.) << " GFlops\n";
60 std::cout << innersize << " x " << outersize << " " << timer.value() << "s " << (double(size2*REPEAT)/timer.value())/(1024.*1024.*1024.) << " GFlops\n";
74 std::cout << timer.value() << "s " << (double(size2*REPEAT)/timer.value())/(1024.*1024.*1024.) << " GFlops\n";
81 for (int k=0; k<REPEAT; ++k)
87 for (int k=0; k<REPEAT; ++k)
96 for (int k=0; k<REPEAT; ++k)
sparse_cholesky.cpp 19 #ifndef REPEAT
20 #define REPEAT 1
37 for (int _k=0; _k<REPEAT; ++_k) { \
sparse_lu.cpp 19 #ifndef REPEAT
20 #define REPEAT 1
37 for (int _k=0; _k<REPEAT; ++_k) { \
sparse_product.cpp 17 #ifndef REPEAT
18 #define REPEAT 1
34 for (int _k=0; _k<REPEAT; ++_k) { \
125 for (int k=0; k<REPEAT; ++k)
132 for (int k=0; k<REPEAT; ++k)
139 for (int k=0; k<REPEAT; ++k)
146 for (int k=0; k<REPEAT; ++k)
194 BENCH(for (int k=0; k<REPEAT; ++k) m3 = m1 * m2;)
207 BENCH(for (int k=0; k<REPEAT; ++k) m3 = m1.transpose() * m2;)
213 BENCH( for (int k=0; k<REPEAT; ++k) m3 = m1.transpose() * m2.transpose();
    [all...]
sparse_randomsetter.cpp 18 #ifndef REPEAT
19 #define REPEAT 1
36 for (int _k=0; _k<REPEAT; ++_k) { \
sparse_trisolver.cpp 15 #ifndef REPEAT
16 #define REPEAT 1
33 for (int _k=0; _k<REPEAT; ++_k) { \
sparse_setter.cpp 14 #ifndef REPEAT
15 #define REPEAT 2
40 for (int _k=0; _k<REPEAT; ++_k) { \
167 for (int k=0; k<REPEAT; ++k)
175 for (int k=0; k<REPEAT; ++k)
  /cts/tests/sample/src/android/sample/cts/
SampleDeviceResultTest.java 35 * The number of times to repeat the test.
37 private static final int REPEAT = 5;
111 double[] result = MeasureTime.measure(REPEAT, workload);
  /cts/tests/tests/security/src/android/security/cts/
SqliteJournalLeakTest.java 35 private static final int REPEAT = 5;
94 for(int i=REPEAT; i > 0; i--) {
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostResultTest.java 49 * The number of times to repeat the test.
51 private static final int REPEAT = 5;
99 double[] result = MeasureTime.measure(REPEAT, new MeasureRun() {
  /external/chromium_org/cc/resources/
ui_resource_bitmap.h 34 REPEAT
  /frameworks/base/graphics/java/android/graphics/
Shader.java 46 * repeat the shader's image horizontally and vertically
48 REPEAT (1),
50 * repeat the shader's image horizontally and vertically, alternating
  /external/pixman/test/
composite.c 66 #define REPEAT 0x01000000
73 1 | REPEAT,
136 pixman_repeat_t repeat; member in struct:image_t
207 info->repeat ? " R" :"");
396 info->repeat = PIXMAN_REPEAT_NONE;
411 if (sizes[size] & REPEAT)
414 info->repeat = PIXMAN_REPEAT_NORMAL;
  /external/chromium_org/chrome/browser/themes/
theme_properties.h 72 REPEAT = 3
119 // "no-repeat" into a Tiling value.
126 // Converts a Tiling into a string like "no-repeat". The result is used to
  /external/chromium/chrome/browser/themes/
theme_service.h 139 REPEAT = 3
197 // Convert a tiling value into a string like "no-repeat". Public
201 // Parse tiling values from something like "no-repeat" into a Tiling value.

Completed in 1127 milliseconds

1 2