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

1 2 3 4 5 6 7 8

  /external/ceres-solver/include/ceres/
crs_matrix.h 43 CRSMatrix() : num_rows(0), num_cols(0) {}
45 int num_rows; member in struct:ceres::CRSMatrix
51 // rows is a num_rows + 1 sized array that points into the cols and
  /external/ceres-solver/internal/ceres/
corrector.h 69 void CorrectResiduals(int num_rows, double* residuals);
77 void CorrectJacobian(int num_rows,
lapack.h 58 int num_rows,
66 static int EstimateWorkSizeForQR(int num_rows, int num_cols);
88 int num_rows,
dynamic_compressed_row_sparse_matrix.cc 38 int num_rows,
41 : CompressedRowSparseMatrix(num_rows,
44 dynamic_cols_.resize(num_rows);
45 dynamic_values_.resize(num_rows);
52 CHECK_LT(row, num_rows());
60 int num_rows) {
61 for (int r = 0; r < num_rows; ++r) {
64 CHECK_LT(i, this->num_rows());
86 for (int i = 0; i < num_rows(); ++i) {
99 mutable_rows()[num_rows()] = index_into_values_and_cols
    [all...]
blas.h 45 static void SymmetricRankKUpdate(int num_rows,
linear_operator.h 52 virtual int num_rows() const = 0;
dynamic_compressed_row_sparse_matrix.h 66 DynamicCompressedRowSparseMatrix(int num_rows,
80 // and proceeding for `num_rows`.
81 void ClearRows(int row_start, int num_rows);
lapack.cc 70 int num_rows,
79 int n = num_rows;
115 int LAPACK::EstimateWorkSizeForQR(int num_rows, int num_cols) {
126 &num_rows,
130 &num_rows,
132 &num_rows,
148 int num_rows,
160 int m = num_rows;
163 int lda = num_rows;
164 int ldb = num_rows;
    [all...]
blas.cc 49 void BLAS::SymmetricRankKUpdate(int num_rows,
61 int n = transpose ? num_cols : num_rows;
62 int k = transpose ? num_rows : num_cols;
normal_prior_test.cc 58 for (int num_rows = 1; num_rows < 5; ++num_rows) {
63 Matrix A(num_rows, num_cols);
70 double * jacobian = new double[num_rows * num_cols];
71 Vector residuals(num_rows);
82 MatrixRef J(jacobian, num_rows, num_cols);
95 for (int num_rows = 1; num_rows < 5; ++num_rows) {
    [all...]
dynamic_compressed_row_sparse_matrix_test.cc 48 num_rows = 7;
56 expected_num_nonzeros = num_rows * num_cols - min(num_rows, num_cols);
61 dcrsm.reset(new DynamicCompressedRowSparseMatrix(num_rows,
71 dense.resize(num_rows, num_cols);
74 for (int i = 0; i < (num_rows * num_cols); ++i) {
87 for (int i = 0; i < (num_rows * num_cols); ++i) {
97 tsm.reset(new TripletSparseMatrix(num_rows,
116 for (int r = 0; r < num_rows; ++r) {
127 EXPECT_EQ(dcrsm->num_rows(), num_rows)
160 int num_rows; member in class:ceres::internal::DynamicCompressedRowSparseMatrixTest
    [all...]
evaluator_test_utils.h 39 int num_rows; member in struct:ceres::internal::ExpectedEvaluation
corrector.cc 112 void Corrector::CorrectResiduals(const int num_rows, double* residuals) {
115 VectorRef(residuals, num_rows) *= residual_scaling_;
118 void Corrector::CorrectJacobian(const int num_rows,
127 VectorRef(jacobian, num_rows * num_cols) *= sqrt_rho1_;
145 for (int r = 0; r < num_rows; ++r) {
149 for (int r = 0; r < num_rows; ++r) {
dense_sparse_matrix_test.cc 49 EXPECT_EQ(a->num_rows(), b->num_rows());
52 int num_rows = a->num_rows(); local
59 Vector y_a = Vector::Zero(num_rows);
60 Vector y_b = Vector::Zero(num_rows);
80 num_rows = tsm->num_rows();
84 int num_rows; member in class:ceres::internal::DenseSparseMatrixTest
100 Vector b1 = Vector::Zero(num_rows);
    [all...]
dense_qr_solver.cc 71 const int num_rows = A->num_rows(); local
94 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
129 const int num_rows = A->num_rows(); local
140 num_rows + ((per_solve_options.D != NULL) ? num_cols : 0);
145 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
compressed_row_sparse_matrix.h 63 // num_rows, num_cols and max_num_nonzeros.
70 CompressedRowSparseMatrix(int num_rows,
74 // Build a square sparse diagonal matrix with num_rows rows and
76 CompressedRowSparseMatrix(const double* diagonal, int num_rows);
89 virtual int num_rows() const { return num_rows_; } function in class:ceres::internal::CompressedRowSparseMatrix
96 // num_rows -= delta_rows
122 void set_num_rows(const int num_rows) { num_rows_ = num_rows; }
cgnr_linear_operator.h 83 : A_(A), D_(D), z_(new double[A.num_rows()]) {
88 std::fill(z_.get(), z_.get() + A_.num_rows(), 0.0);
108 virtual int num_rows() const { return A_.num_cols(); } function in class:ceres::internal::CgnrLinearOperator
dense_sparse_matrix.h 54 DenseSparseMatrix(int num_rows, int num_cols);
55 DenseSparseMatrix(int num_rows, int num_cols, bool reserve_diagonal);
67 virtual int num_rows() const;
block_random_access_diagonal_matrix.h 73 // Since the matrix is square, num_rows() == num_cols().
74 virtual int num_rows() const { return tsm_->num_rows(); } function in class:ceres::internal::BlockRandomAccessDiagonalMatrix
preconditioner.cc 68 int SparseMatrixPreconditionerWrapper::num_rows() const { function in class:ceres::internal::SparseMatrixPreconditionerWrapper
69 return matrix_->num_rows();
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
complex_matrix.h 30 ComplexMatrix(size_t num_rows, size_t num_columns)
31 : Matrix<complex<T> >(num_rows, num_columns) {}
33 ComplexMatrix(const complex<T>* data, size_t num_rows, size_t num_columns)
34 : Matrix<complex<T> >(data, num_rows, num_columns) {}
39 size_t size = this->num_rows() * this->num_columns();
54 size_t num_rows = this->num_rows(); local
56 this->SetNumColumns(num_rows);
62 RTC_CHECK_EQ(operand.num_rows(), this->num_columns());
63 RTC_CHECK_EQ(operand.num_columns(), this->num_rows());
    [all...]
matrix_test_helpers.h 32 EXPECT_EQ(expected.num_rows(), actual.num_rows());
37 for (size_t i = 0; i < expected.num_rows(); ++i) {
46 EXPECT_EQ(expected.num_rows(), actual.num_rows());
51 for (size_t i = 0; i < expected.num_rows(); ++i) {
61 EXPECT_EQ(expected.num_rows(), actual.num_rows());
66 for (size_t i = 0; i < expected.num_rows(); ++i) {
82 EXPECT_EQ(expected.num_rows(), actual.num_rows())
    [all...]
  /external/ceres-solver/include/ceres/internal/
eigen.h 65 template <int num_rows = Eigen::Dynamic, int num_cols = Eigen::Dynamic>
67 typedef Eigen::Matrix <double, num_rows, num_cols, Eigen::RowMajor>
71 Eigen::Matrix<double, num_rows, num_cols, Eigen::RowMajor> >
74 typedef Eigen::Matrix <double, num_rows, 1>
78 Eigen::Matrix<double, num_rows, 1> >
83 const Eigen::Matrix<double, num_rows, num_cols, Eigen::RowMajor> >
87 const Eigen::Matrix<double, num_rows, 1> >
  /external/libmpeg2/decoder/
impeg2d_deinterlace.h 28 WORD32 num_rows);
  /external/libjpeg-turbo/simd/
jsimd.h 31 JDIMENSION output_row, int num_rows);
34 JDIMENSION output_row, int num_rows);
37 JDIMENSION output_row, int num_rows);
40 JDIMENSION output_row, int num_rows);
43 JDIMENSION output_row, int num_rows);
46 JDIMENSION output_row, int num_rows);
49 JDIMENSION output_row, int num_rows);
54 JDIMENSION output_row, int num_rows);
57 JDIMENSION output_row, int num_rows);
60 JDIMENSION output_row, int num_rows);
    [all...]

Completed in 1227 milliseconds

1 2 3 4 5 6 7 8