HomeSort by relevance Sort by last modified time
    Searched refs:DENSITY (Results 1 - 9 of 9) sorted by null

  /external/eigen/bench/
sparse_transpose.cpp 10 #ifndef DENSITY
11 #define DENSITY 0.01
40 float density = DENSITY; local
45 for (float density = DENSITY; density>=MINDENSITY; density*=0.5)
47 fillMatrix(density, rows, cols, sm1);
sparse_lu.cpp 15 #ifndef DENSITY
16 #define DENSITY 0.01
76 float density = DENSITY; local
84 //for (float density = DENSITY; density>=MINDENSITY; density*=0.5)
85 // float density = 0.5;
88 fillMatrix(density, rows, cols, sm1)
    [all...]
sparse_randomsetter.cpp 14 #ifndef DENSITY
15 #define DENSITY 0.01
69 float density = DENSITY; local
74 nentries = rows*cols*density;
sparse_dense_product.cpp 10 #ifndef DENSITY
11 #define DENSITY 0.01
56 float density = DENSITY; local
63 for (float density = DENSITY; density>=MINDENSITY; density*=0.5)
65 //fillMatrix(density, rows, cols, sm1);
71 std::cout << "Eigen Dense\t" << density*100 << "%\n"
    [all...]
sparse_trisolver.cpp 11 #ifndef DENSITY
12 #define DENSITY 0.01
40 void fillMatrix(float density, int rows, int cols, EigenSparseTriMatrix& dst)
42 dst.startFill(rows*cols*density);
47 Scalar v = (internal::random<float>(0,1) < density) ? internal::random<Scalar>() : 0;
60 float density = DENSITY; local
70 for (float density = DENSITY; density>=MINDENSITY; density*=0.5
    [all...]
sparse_cholesky.cpp 15 #ifndef DENSITY
16 #define DENSITY 0.01
44 void fillSpdMatrix(float density, int rows, int cols, EigenSparseSelfAdjointMatrix& dst)
46 dst.startFill(rows*cols*density);
52 Scalar v = (internal::random<float>(0,1) < density) ? internal::random<Scalar>() : 0;
81 float density = DENSITY; local
89 //for (float density = DENSITY; density>=MINDENSITY; density*=0.5
    [all...]
BenchSparseUtil.h 14 #ifndef DENSITY
15 #define DENSITY 0.01
27 void fillMatrix(float density, int rows, int cols, EigenSparseMatrix& dst)
29 dst.reserve(double(rows)*cols*density);
34 Scalar v = (internal::random<float>(0,1) < density) ? internal::random<Scalar>() : 0;
sparse_product.cpp 102 float density = DENSITY; local
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 47 DENSITY,
123 case DENSITY:
125 mMetrics.density = (((float)value)/((float)DisplayMetrics.DENSITY_DEFAULT));
189 config.mMetrics.density = 1;
316 config.setProperty(Properties.DENSITY, 240);
520 config.setProperty(Properties.DENSITY, 240);
629 config.setProperty(Properties.DENSITY, 2);
636 config.setProperty(Properties.DENSITY, 32);
643 config.setProperty(Properties.DENSITY, 48);
650 config.setProperty(Properties.DENSITY, 49)
    [all...]

Completed in 95 milliseconds