mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Apply clang-format
This commit is contained in:
@@ -19,46 +19,46 @@
|
||||
namespace Eigen {
|
||||
|
||||
/**
|
||||
* \defgroup SpecialFunctions_Module Special math functions module
|
||||
*
|
||||
* This module features additional coefficient-wise math functions available
|
||||
* within the numext:: namespace for the scalar version, and as method and/or free
|
||||
* functions of Array. Those include:
|
||||
*
|
||||
* - erf
|
||||
* - erfc
|
||||
* - lgamma
|
||||
* - igamma
|
||||
* - igamma_der_a
|
||||
* - gamma_sample_der_alpha
|
||||
* - igammac
|
||||
* - digamma
|
||||
* - ndtri
|
||||
* - polygamma
|
||||
* - zeta
|
||||
* - betainc
|
||||
*
|
||||
* Bessel Functions
|
||||
* - bessel_i0
|
||||
* - bessel_i0e
|
||||
* - bessel_i1
|
||||
* - bessel_i1e
|
||||
* - bessel_j0
|
||||
* - bessel_j1
|
||||
* - bessel_k0
|
||||
* - bessel_k0e
|
||||
* - bessel_k1
|
||||
* - bessel_k1e
|
||||
* - bessel_y0
|
||||
* - bessel_y1
|
||||
*
|
||||
* \code
|
||||
* #include <unsupported/Eigen/SpecialFunctions>
|
||||
* \endcode
|
||||
*/
|
||||
* \defgroup SpecialFunctions_Module Special math functions module
|
||||
*
|
||||
* This module features additional coefficient-wise math functions available
|
||||
* within the numext:: namespace for the scalar version, and as method and/or free
|
||||
* functions of Array. Those include:
|
||||
*
|
||||
* - erf
|
||||
* - erfc
|
||||
* - lgamma
|
||||
* - igamma
|
||||
* - igamma_der_a
|
||||
* - gamma_sample_der_alpha
|
||||
* - igammac
|
||||
* - digamma
|
||||
* - ndtri
|
||||
* - polygamma
|
||||
* - zeta
|
||||
* - betainc
|
||||
*
|
||||
* Bessel Functions
|
||||
* - bessel_i0
|
||||
* - bessel_i0e
|
||||
* - bessel_i1
|
||||
* - bessel_i1e
|
||||
* - bessel_j0
|
||||
* - bessel_j1
|
||||
* - bessel_k0
|
||||
* - bessel_k0e
|
||||
* - bessel_k1
|
||||
* - bessel_k1e
|
||||
* - bessel_y0
|
||||
* - bessel_y1
|
||||
*
|
||||
* \code
|
||||
* #include <unsupported/Eigen/SpecialFunctions>
|
||||
* \endcode
|
||||
*/
|
||||
//@{
|
||||
|
||||
}
|
||||
} // namespace Eigen
|
||||
|
||||
// IWYU pragma: begin_exports
|
||||
#include "src/SpecialFunctions/BesselFunctionsImpl.h"
|
||||
@@ -78,20 +78,20 @@ namespace Eigen {
|
||||
#include "src/SpecialFunctions/SpecialFunctionsArrayAPI.h"
|
||||
|
||||
#if defined EIGEN_VECTORIZE_AVX512
|
||||
#include "src/SpecialFunctions/arch/AVX/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX/SpecialFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX512/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX512/SpecialFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX/SpecialFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX512/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX512/SpecialFunctions.h"
|
||||
#elif defined EIGEN_VECTORIZE_AVX
|
||||
#include "src/SpecialFunctions/arch/AVX/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX/SpecialFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/AVX/SpecialFunctions.h"
|
||||
#elif defined EIGEN_VECTORIZE_NEON
|
||||
#include "src/SpecialFunctions/arch/NEON/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/NEON/SpecialFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/NEON/BesselFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/NEON/SpecialFunctions.h"
|
||||
#endif
|
||||
|
||||
#if defined EIGEN_VECTORIZE_GPU
|
||||
#include "src/SpecialFunctions/arch/GPU/SpecialFunctions.h"
|
||||
#include "src/SpecialFunctions/arch/GPU/SpecialFunctions.h"
|
||||
#endif
|
||||
// IWYU pragma: end_exports
|
||||
|
||||
@@ -99,7 +99,6 @@ namespace Eigen {
|
||||
//@}
|
||||
}
|
||||
|
||||
|
||||
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
||||
|
||||
#endif // EIGEN_SPECIALFUNCTIONS_MODULE_H
|
||||
#endif // EIGEN_SPECIALFUNCTIONS_MODULE_H
|
||||
|
||||
Reference in New Issue
Block a user