Add Apple's Accelerate framework as a sparse linear algebra library.

- Currently DynamicSparseNormalCholeskySolver is unsupported for
  Accelerate.

Change-Id: I03b5a86bb22fef249c4aecd48947a613e8eff7a5
This commit is contained in:
Alex Stewart
2018-06-23 20:17:34 +01:00
parent 357288008e
commit 8f41ca6abc
44 changed files with 1835 additions and 32 deletions
+4
View File
@@ -70,6 +70,10 @@ std::string VersionString() {
value += "-cxsparse-(" + std::string(CERES_CXSPARSE_VERSION) + ")";
#endif
#ifndef CERES_NO_ACCELERATE_SPARSE
value += "-acceleratesparse";
#endif
#ifdef CERES_USE_EIGEN_SPARSE
value += "-eigensparse";
#endif