Commit bd3827ae authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Add missing inline documentation strings

parent 061bf1d6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -24,12 +24,15 @@
#define INCLUDE_LAPACK_CALLS_H_

#ifndef LAPACK_SUCCESS
//! \brief Success code macro for LAPACK functions.
#define LAPACK_SUCCESS 0
#endif

#ifdef USE_MKL
//! \brief Double precision complex for MKL implementation.
typedef MKL_Complex16 lcomplex;
#else
//! \brief Double precision complex for LAPACK implementation.
typedef dcomplex lcomplex;
#endif // USE_MKL

+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
#ifndef INCLUDE_MAGMA_CALLS_H_
#define INCLUDE_MAGMA_CALLS_H_

//! \brief Maximum number of elements on GPU static vectors.
#define MAX_GPU_STACK_DOUBLE 128

#ifdef USE_TARGET_OFFLOAD
+1 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@

using namespace std;

//! \brief Four times PI.
const double four_pi = 8.0 * acos(0.0);

void apc(