accelerInt  v0.1
complexInverse.cuh
Go to the documentation of this file.
1 
6 #ifndef COMPLEX_INVERSE_CUH
7 #define COMPLEX_INVERSE_CUH
8 
9 #include <cuComplex.h>
10 
11 __device__ void getComplexLU (const int, cuDoubleComplex* __restrict__, int* __restrict__, int* __restrict__);
12 __device__ void getComplexInverse (const int, cuDoubleComplex* __restrict__, const int* __restrict__,
13  int* __restrict__, cuDoubleComplex* __restrict__);
14 __device__ void getComplexInverseHessenberg (const int, cuDoubleComplex* __restrict__, int* __restrict__,
15  int* __restrict__, cuDoubleComplex* __restrict__);
16 
17 #endif
__device__ void getComplexLU(const int, cuDoubleComplex *__restrict__, int *__restrict__, int *__restrict__)
__device__ void getComplexInverse(const int, cuDoubleComplex *__restrict__, const int *__restrict__, int *__restrict__, cuDoubleComplex *__restrict__)
__device__ void getComplexInverseHessenberg(const int, cuDoubleComplex *__restrict__, int *__restrict__, int *__restrict__, cuDoubleComplex *__restrict__)