Remove Solver::Options::num_linear_solver_threads

Also removed Solver::Summary::num_linear_solver_threads_given
and Solver::Summary::num_linear_solver_threads_used.

Change-Id: I559145ae2e7af597ea06ec03d386645a3a892e9f
This commit is contained in:
Sameer Agarwal
2018-04-26 21:13:35 -07:00
parent cd48f83f8d
commit cfdc2af28b
4 changed files with 0 additions and 77 deletions
-32
View File
@@ -1280,16 +1280,6 @@ elimination group [LiSaad]_.
The upside is that you do not need to build and link to an external
library to use ``EIGEN_SPARSE``.
.. member:: int Solver::Options::num_linear_solver_threads
Default: ``-1``
**This field is deprecated, and is ignored by
Ceres. Solver::Options::num_threads controls threading for all
of Ceres Solver. This setting is scheduled to be removed in
1.15.0.**
Number of threads used by the linear solver.
.. member:: shared_ptr<ParameterBlockOrdering> Solver::Options::linear_solver_ordering
@@ -2223,28 +2213,6 @@ The three arrays will be:
:member:`Solver::Summary::num_threads_given` if none of `OpenMP`,
`TBB` or `CXX11_THREADS` is available.
.. member:: int Solver::Summary::num_linear_solver_threads_given
**This field is deprecated and is scheduled to be removed in
1.15.0.** :member:`Solver::Summary::num_threads_given` should be used
instead. In the interim the value of this field will be the same as
:member:`Solver::Summary::num_threads_given`.
Number of threads requested by the user for solving the trust
region problem.
.. member:: int Solver::Summary::num_linear_solver_threads_used
**This field is deprecated and is scheduled to be removed in
1.15.0.** :member:`Solver::Summary::num_threads_used` should be used
instead. In the interim the value of this field will be the same as
:member:`Solver::Summary::num_threads_used`.
Number of threads actually used by the solver for solving the trust
region problem. This number is not equal to
:member:`Solver::Summary::num_linear_solver_threads_given` if none
of `OpenMP`, `TBB` or `CXX11_THREADS` is available.
.. member:: LinearSolverType Solver::Summary::linear_solver_type_given
Type of the linear solver requested by the user.