Skip to content

Commit e4e6380

Browse files
committed
Update the headers
Signed-off-by: GitHub Actions Bot <actions@github.com>
1 parent bd4fcff commit e4e6380

File tree

633 files changed

+705996
-129763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

633 files changed

+705996
-129763
lines changed

results/licenses.txt

Lines changed: 52052 additions & 0 deletions
Large diffs are not rendered by default.

results/sbom_spdx.json

Lines changed: 507693 additions & 0 deletions
Large diffs are not rendered by default.

src/pgm_build_dependencies/eigen/COPYING.MPL2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Exhibit A - Source Code Form License Notice
357357

358358
This Source Code Form is subject to the terms of the Mozilla Public
359359
License, v. 2.0. If a copy of the MPL was not distributed with this
360-
file, You can obtain one at http://mozilla.org/MPL/2.0/.
360+
file, You can obtain one at https://mozilla.org/MPL/2.0/.
361361

362362
If it is not possible or desirable to put the notice in a particular
363363
file, then You may include the notice in a location (such as a LICENSE
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Eigen is primarily MPL2 licensed. See COPYING.MPL2 and these links:
2+
http://www.mozilla.org/MPL/2.0/
3+
http://www.mozilla.org/MPL/2.0/FAQ.html
4+
5+
Some files contain third-party code under BSD or other MPL2-compatible licenses,
6+
whence the other COPYING.* files here.

src/pgm_build_dependencies/eigen/LICENSE

Lines changed: 373 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
**Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.**
22

3-
For more information go to http://eigen.tuxfamily.org/.
3+
For more information go to http://eigen.tuxfamily.org/ or https://libeigen.gitlab.io/docs/.
44

55
For ***pull request***, ***bug reports***, and ***feature requests***, go to https://gitlab.com/libeigen/eigen.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
// This file is part of Eigen, a lightweight C++ template library
2+
// for linear algebra.
3+
//
4+
// This Source Code Form is subject to the terms of the Mozilla
5+
// Public License v. 2.0. If a copy of the MPL was not distributed
6+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
8+
#ifndef EIGEN_ACCELERATESUPPORT_MODULE_H
9+
#define EIGEN_ACCELERATESUPPORT_MODULE_H
10+
11+
#include "SparseCore"
12+
13+
#include "src/Core/util/DisableStupidWarnings.h"
14+
15+
/** \ingroup Support_modules
16+
* \defgroup AccelerateSupport_Module AccelerateSupport module
17+
*
18+
* This module provides an interface to the Apple Accelerate library.
19+
* It provides the seven following main factorization classes:
20+
* - class AccelerateLLT: a Cholesky (LL^T) factorization.
21+
* - class AccelerateLDLT: the default LDL^T factorization.
22+
* - class AccelerateLDLTUnpivoted: a Cholesky-like LDL^T factorization with only 1x1 pivots and no pivoting
23+
* - class AccelerateLDLTSBK: an LDL^T factorization with Supernode Bunch-Kaufman and static pivoting
24+
* - class AccelerateLDLTTPP: an LDL^T factorization with full threshold partial pivoting
25+
* - class AccelerateQR: a QR factorization
26+
* - class AccelerateCholeskyAtA: a QR factorization without storing Q (equivalent to A^TA = R^T R)
27+
*
28+
* \code
29+
* #include <Eigen/AccelerateSupport>
30+
* \endcode
31+
*
32+
* In order to use this module, the Accelerate headers must be accessible from
33+
* the include paths, and your binary must be linked to the Accelerate framework.
34+
* The Accelerate library is only available on Apple hardware.
35+
*
36+
* Note that many of the algorithms can be influenced by the UpLo template
37+
* argument. All matrices are assumed to be symmetric. For example, the following
38+
* creates an LDLT factorization where your matrix is symmetric (implicit) and
39+
* uses the lower triangle:
40+
*
41+
* \code
42+
* AccelerateLDLT<SparseMatrix<float>, Lower> ldlt;
43+
* \endcode
44+
*/
45+
46+
// IWYU pragma: begin_exports
47+
#include "src/AccelerateSupport/AccelerateSupport.h"
48+
// IWYU pragma: end_exports
49+
50+
#include "src/Core/util/ReenableStupidWarnings.h"
51+
52+
#endif // EIGEN_ACCELERATESUPPORT_MODULE_H

src/pgm_build_dependencies/eigen/include/eigen3/Eigen/Cholesky

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,30 @@
1414
#include "src/Core/util/DisableStupidWarnings.h"
1515

1616
/** \defgroup Cholesky_Module Cholesky module
17-
*
18-
*
19-
*
20-
* This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
21-
* Those decompositions are also accessible via the following methods:
22-
* - MatrixBase::llt()
23-
* - MatrixBase::ldlt()
24-
* - SelfAdjointView::llt()
25-
* - SelfAdjointView::ldlt()
26-
*
27-
* \code
28-
* #include <Eigen/Cholesky>
29-
* \endcode
30-
*/
17+
*
18+
*
19+
*
20+
* This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
21+
* Those decompositions are also accessible via the following methods:
22+
* - MatrixBase::llt()
23+
* - MatrixBase::ldlt()
24+
* - SelfAdjointView::llt()
25+
* - SelfAdjointView::ldlt()
26+
*
27+
* \code
28+
* #include <Eigen/Cholesky>
29+
* \endcode
30+
*/
3131

32+
// IWYU pragma: begin_exports
3233
#include "src/Cholesky/LLT.h"
3334
#include "src/Cholesky/LDLT.h"
3435
#ifdef EIGEN_USE_LAPACKE
35-
#ifdef EIGEN_USE_MKL
36-
#include "mkl_lapacke.h"
37-
#else
38-
#include "src/misc/lapacke.h"
39-
#endif
36+
#include "src/misc/lapacke_helpers.h"
4037
#include "src/Cholesky/LLT_LAPACKE.h"
4138
#endif
39+
// IWYU pragma: end_exports
4240

4341
#include "src/Core/util/ReenableStupidWarnings.h"
4442

45-
#endif // EIGEN_CHOLESKY_MODULE_H
43+
#endif // EIGEN_CHOLESKY_MODULE_H

src/pgm_build_dependencies/eigen/include/eigen3/Eigen/CholmodSupport

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -12,37 +12,37 @@
1212

1313
#include "src/Core/util/DisableStupidWarnings.h"
1414

15-
extern "C" {
16-
#include <cholmod.h>
17-
}
15+
#include <cholmod.h>
1816

1917
/** \ingroup Support_modules
20-
* \defgroup CholmodSupport_Module CholmodSupport module
21-
*
22-
* This module provides an interface to the Cholmod library which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
23-
* It provides the two following main factorization classes:
24-
* - class CholmodSupernodalLLT: a supernodal LLT Cholesky factorization.
25-
* - class CholmodDecomposition: a general L(D)LT Cholesky factorization with automatic or explicit runtime selection of the underlying factorization method (supernodal or simplicial).
26-
*
27-
* For the sake of completeness, this module also propose the two following classes:
28-
* - class CholmodSimplicialLLT
29-
* - class CholmodSimplicialLDLT
30-
* Note that these classes does not bring any particular advantage compared to the built-in
31-
* SimplicialLLT and SimplicialLDLT factorization classes.
32-
*
33-
* \code
34-
* #include <Eigen/CholmodSupport>
35-
* \endcode
36-
*
37-
* In order to use this module, the cholmod headers must be accessible from the include paths, and your binary must be linked to the cholmod library and its dependencies.
38-
* The dependencies depend on how cholmod has been compiled.
39-
* For a cmake based project, you can use our FindCholmod.cmake module to help you in this task.
40-
*
41-
*/
42-
18+
* \defgroup CholmodSupport_Module CholmodSupport module
19+
*
20+
* This module provides an interface to the Cholmod library which is part of the <a
21+
* href="http://www.suitesparse.com">suitesparse</a> package. It provides the two following main factorization classes:
22+
* - class CholmodSupernodalLLT: a supernodal LLT Cholesky factorization.
23+
* - class CholmodDecomposition: a general L(D)LT Cholesky factorization with automatic or explicit runtime selection of
24+
* the underlying factorization method (supernodal or simplicial).
25+
*
26+
* For the sake of completeness, this module also propose the two following classes:
27+
* - class CholmodSimplicialLLT
28+
* - class CholmodSimplicialLDLT
29+
* Note that these classes does not bring any particular advantage compared to the built-in
30+
* SimplicialLLT and SimplicialLDLT factorization classes.
31+
*
32+
* \code
33+
* #include <Eigen/CholmodSupport>
34+
* \endcode
35+
*
36+
* In order to use this module, the cholmod headers must be accessible from the include paths, and your binary must be
37+
* linked to the cholmod library and its dependencies. The dependencies depend on how cholmod has been compiled. For a
38+
* cmake based project, you can use our FindCholmod.cmake module to help you in this task.
39+
*
40+
*/
41+
42+
// IWYU pragma: begin_exports
4343
#include "src/CholmodSupport/CholmodSupport.h"
44+
// IWYU pragma: end_exports
4445

4546
#include "src/Core/util/ReenableStupidWarnings.h"
4647

47-
#endif // EIGEN_CHOLMODSUPPORT_MODULE_H
48-
48+
#endif // EIGEN_CHOLMODSUPPORT_MODULE_H

0 commit comments

Comments
 (0)