HubbardGPU
Hubbard diagonalisation on the GPU (and CPU)
|
#include <vector>
#include <string>
Go to the source code of this file.
Classes | |
class | BareHamiltonian |
Typedefs | |
typedef unsigned int | myint |
type to store the basis set vectors in More... | |
Functions | |
void | dsyevd_ (char *jobz, char *uplo, int *n, double *a, int *lda, double *w, double *work, int *lwork, int *iwork, int *liwork, int *info) |
double | ddot_ (int *n, double *x, int *incx, double *y, int *incy) |
void | dscal_ (int *n, double *alpha, double *x, int *incx) |
void | dsymv_ (char *uplo, const int *n, const double *alpha, const double *a, const int *lda, const double *x, const int *incx, const double *beta, double *y, const int *incy) |
void | daxpy_ (int *n, const double *alpha, double *x, int *incx, double *y, int *incy) |
void | dstev_ (const char *jobz, const int *n, double *d, double *e, double *z, const int *ldz, double *work, int *info) |
void | dgesvd_ (char *jobu, char *jobvt, int *m, int *n, double *a, int *lda, double *s, double *u, int *ldu, double *vt, int *ldvt, double *work, int *lwork, int *info) |
void | dgemm_ (char *transA, char *transB, const int *m, const int *n, const int *k, double *alpha, double *A, const int *lda, double *B, const int *ldb, double *beta, double *C, const int *ldc) |
void | dsaupd_ (int *ido, char *bmat, int *n, char *which, int *nev, double *tol, double *resid, int *ncv, double *v, int *ldv, int *iparam, int *ipntr, double *workd, double *workl, int *lworkl, int *info) |
void | dseupd_ (int *rvec, char *All, int *select, double *d, double *z, int *ldz, double *sigma, char *bmat, int *n, char *which, int *nev, double *tol, double *resid, int *ncv, double *v, int *ldv, int *iparam, int *ipntr, double *workd, double *workl, int *lworkl, int *info) |
typedef unsigned int myint |
type to store the basis set vectors in
Definition at line 26 of file bare-ham.h.
void daxpy_ | ( | int * | n, |
const double * | alpha, | ||
double * | x, | ||
int * | incx, | ||
double * | y, | ||
int * | incy | ||
) |
double ddot_ | ( | int * | n, |
double * | x, | ||
int * | incx, | ||
double * | y, | ||
int * | incy | ||
) |
void dgemm_ | ( | char * | transA, |
char * | transB, | ||
const int * | m, | ||
const int * | n, | ||
const int * | k, | ||
double * | alpha, | ||
double * | A, | ||
const int * | lda, | ||
double * | B, | ||
const int * | ldb, | ||
double * | beta, | ||
double * | C, | ||
const int * | ldc | ||
) |
void dgesvd_ | ( | char * | jobu, |
char * | jobvt, | ||
int * | m, | ||
int * | n, | ||
double * | a, | ||
int * | lda, | ||
double * | s, | ||
double * | u, | ||
int * | ldu, | ||
double * | vt, | ||
int * | ldvt, | ||
double * | work, | ||
int * | lwork, | ||
int * | info | ||
) |
void dsaupd_ | ( | int * | ido, |
char * | bmat, | ||
int * | n, | ||
char * | which, | ||
int * | nev, | ||
double * | tol, | ||
double * | resid, | ||
int * | ncv, | ||
double * | v, | ||
int * | ldv, | ||
int * | iparam, | ||
int * | ipntr, | ||
double * | workd, | ||
double * | workl, | ||
int * | lworkl, | ||
int * | info | ||
) |
void dscal_ | ( | int * | n, |
double * | alpha, | ||
double * | x, | ||
int * | incx | ||
) |
void dseupd_ | ( | int * | rvec, |
char * | All, | ||
int * | select, | ||
double * | d, | ||
double * | z, | ||
int * | ldz, | ||
double * | sigma, | ||
char * | bmat, | ||
int * | n, | ||
char * | which, | ||
int * | nev, | ||
double * | tol, | ||
double * | resid, | ||
int * | ncv, | ||
double * | v, | ||
int * | ldv, | ||
int * | iparam, | ||
int * | ipntr, | ||
double * | workd, | ||
double * | workl, | ||
int * | lworkl, | ||
int * | info | ||
) |
void dstev_ | ( | const char * | jobz, |
const int * | n, | ||
double * | d, | ||
double * | e, | ||
double * | z, | ||
const int * | ldz, | ||
double * | work, | ||
int * | info | ||
) |
void dsyevd_ | ( | char * | jobz, |
char * | uplo, | ||
int * | n, | ||
double * | a, | ||
int * | lda, | ||
double * | w, | ||
double * | work, | ||
int * | lwork, | ||
int * | iwork, | ||
int * | liwork, | ||
int * | info | ||
) |
void dsymv_ | ( | char * | uplo, |
const int * | n, | ||
const double * | alpha, | ||
const double * | a, | ||
const int * | lda, | ||
const double * | x, | ||
const int * | incx, | ||
const double * | beta, | ||
double * | y, | ||
const int * | incy | ||
) |