|
PLASMA
2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
Go to the source code of this file.
Macros | |
| #define | PRECISION_c |
Functions | |
| subroutine | plasma_wrap_cgesv (N, NRHS, A, LDA, IPIV, B, LDB, INFO) |
| subroutine | plasma_wrap_cgetrf (M, N, A, LDA, IPIV, INFO) |
| subroutine | plasma_wrap_cgetrs (TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO) |
| subroutine | plasma_wrap_chegst (ITYPE, UPLO, N, A, LDA, B, LDB, INFO) |
| subroutine | plasma_wrap_claswp (N, A, LDA, K1, K2, IPIV, INCX) |
| subroutine | plasma_wrap_clauum (UPLO, N, A, LDA, INFO) |
| subroutine | plasma_wrap_cposv (UPLO, N, NRHS, A, LDA, B, LDB, INFO) |
| subroutine | plasma_wrap_cpotrf (UPLO, N, A, LDA, INFO) |
| subroutine | plasma_wrap_cpotri (UPLO, N, A, LDA, INFO) |
| subroutine | plasma_wrap_cpotrs (UPLO, N, NRHS, A, LDA, B, LDB, INFO) |
| subroutine | plasma_wrap_ctrtri (UPLO, DIAG, N, A, LDA, INFO) |
| subroutine | plasma_wrap_cgemm (TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC) |
| subroutine | plasma_wrap_chemm (SIDE, UPLO, M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC) |
| subroutine | plasma_wrap_cher2k (UPLO, TRANS, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC) |
| subroutine | plasma_wrap_cherk (UPLO, TRANS, N, K, ALPHA, A, LDA, BETA, C, LDC) |
| subroutine | plasma_wrap_csymm (SIDE, UPLO, M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC) |
| subroutine | plasma_wrap_csyr2k (UPLO, TRANS, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC) |
| subroutine | plasma_wrap_csyrk (UPLO, TRANS, N, K, ALPHA, A, LDA, BETA, C, LDC) |
| subroutine | plasma_wrap_ctrmm (SIDE, UPLO, TRANSA, DIAG, M, N, ALPHA, A, LDA, B, LDB) |
| subroutine | plasma_wrap_ctrsm (SIDE, UPLO, TRANSA, DIAG, M, N, ALPHA, A, LDA, B, LDB) |
| #define PRECISION_c |
| subroutine plasma_wrap_cgemm | ( | character, intent(in) | TRANSA, |
| character, intent(in) | TRANSB, | ||
| integer, intent(in) | M, | ||
| integer, intent(in) | N, | ||
| integer, intent(in) | K, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(in), target | B, | ||
| integer, intent(in) | LDB, | ||
| complex, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 331 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cgemm(), and plasma::plasma_init().

| subroutine plasma_wrap_cgesv | ( | integer, intent(in) | N, |
| integer, intent(in) | NRHS, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, dimension(*), intent(out), target | IPIV, | ||
| complex, dimension(ldb,*), intent(inout), target | B, | ||
| integer, intent(in) | LDB, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 71 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cgesv(), and plasma::plasma_init().

| subroutine plasma_wrap_cgetrf | ( | integer, intent(in) | M, |
| integer, intent(in) | N, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, dimension(*), intent(out), target | IPIV, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 89 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cgetrf(), and plasma::plasma_init().

| subroutine plasma_wrap_cgetrs | ( | character, intent(in) | TRANS, |
| integer, intent(in) | N, | ||
| integer, intent(in) | NRHS, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, dimension(*), intent(in), target | IPIV, | ||
| complex, dimension(ldb,*), intent(inout), target | B, | ||
| integer, intent(in) | LDB, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 105 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cgetrs(), plasma::plasma_init(), and trans.

| subroutine plasma_wrap_chegst | ( | integer, intent(in) | ITYPE, |
| character, intent(in) | UPLO, | ||
| integer, intent(in) | N, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(in), target | B, | ||
| integer, intent(in) | LDB, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 134 of file plasma_cf90_wrappers.F90.
References itype, plasma_c::plasma_chegst(), plasma::plasma_init(), and uplo.

| subroutine plasma_wrap_chemm | ( | character, intent(in) | SIDE, |
| character, intent(in) | UPLO, | ||
| integer, intent(in) | M, | ||
| integer, intent(in) | N, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(in), target | B, | ||
| integer, intent(in) | LDB, | ||
| complex, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 376 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_chemm(), plasma::plasma_init(), side, and uplo.

| subroutine plasma_wrap_cher2k | ( | character, intent(in) | UPLO, |
| character, intent(in) | TRANS, | ||
| integer, intent(in) | N, | ||
| integer, intent(in) | K, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(in), target | B, | ||
| integer, intent(in) | LDB, | ||
| real, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 415 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cher2k(), plasma::plasma_init(), trans, and uplo.

| subroutine plasma_wrap_cherk | ( | character, intent(in) | UPLO, |
| character, intent(in) | TRANS, | ||
| integer, intent(in) | N, | ||
| integer, intent(in) | K, | ||
| real, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| real, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 456 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cherk(), plasma::plasma_init(), trans, and uplo.

| subroutine plasma_wrap_claswp | ( | integer, intent(in) | N, |
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, intent(in) | K1, | ||
| integer, intent(in) | K2, | ||
| integer, dimension(*), intent(in), target | IPIV, | ||
| integer, intent(in) | INCX | ||
| ) |
Definition at line 160 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_claswp(), and plasma::plasma_init().

| subroutine plasma_wrap_clauum | ( | character, intent(in) | UPLO, |
| integer, intent(in) | N, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 178 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_clauum(), plasma::plasma_init(), and uplo.

| subroutine plasma_wrap_cposv | ( | character, intent(in) | UPLO, |
| integer, intent(in) | N, | ||
| integer, intent(in) | NRHS, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(inout), target | B, | ||
| integer, intent(in) | LDB, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 201 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cposv(), plasma::plasma_init(), and uplo.

| subroutine plasma_wrap_cpotrf | ( | character, intent(in) | UPLO, |
| integer, intent(in) | N, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 227 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cpotrf(), plasma::plasma_init(), and uplo.

| subroutine plasma_wrap_cpotri | ( | character, intent(in) | UPLO, |
| integer, intent(in) | N, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 250 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cpotri(), plasma::plasma_init(), and uplo.

| subroutine plasma_wrap_cpotrs | ( | character, intent(in) | UPLO, |
| integer, intent(in) | N, | ||
| integer, intent(in) | NRHS, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(inout), target | B, | ||
| integer, intent(in) | LDB, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 273 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_cpotrs(), plasma::plasma_init(), and uplo.

| subroutine plasma_wrap_csymm | ( | character, intent(in) | SIDE, |
| character, intent(in) | UPLO, | ||
| integer, intent(in) | M, | ||
| integer, intent(in) | N, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(in), target | B, | ||
| integer, intent(in) | LDB, | ||
| complex, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 496 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_csymm(), plasma::plasma_init(), side, and uplo.

| subroutine plasma_wrap_csyr2k | ( | character, intent(in) | UPLO, |
| character, intent(in) | TRANS, | ||
| integer, intent(in) | N, | ||
| integer, intent(in) | K, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(in), target | B, | ||
| integer, intent(in) | LDB, | ||
| complex, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 535 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_csyr2k(), plasma::plasma_init(), trans, and uplo.

| subroutine plasma_wrap_csyrk | ( | character, intent(in) | UPLO, |
| character, intent(in) | TRANS, | ||
| integer, intent(in) | N, | ||
| integer, intent(in) | K, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, intent(in) | BETA, | ||
| complex, dimension(ldc,*), intent(inout), target | C, | ||
| integer, intent(in) | LDC | ||
| ) |
Definition at line 576 of file plasma_cf90_wrappers.F90.
References plasma_c::plasma_csyrk(), plasma::plasma_init(), trans, and uplo.

| subroutine plasma_wrap_ctrmm | ( | character, intent(in) | SIDE, |
| character, intent(in) | UPLO, | ||
| character, intent(in) | TRANSA, | ||
| character, intent(in) | DIAG, | ||
| integer, intent(in) | M, | ||
| integer, intent(in) | N, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(inout), target | B, | ||
| integer, intent(in) | LDB | ||
| ) |
Definition at line 615 of file plasma_cf90_wrappers.F90.
References diag, plasma_c::plasma_ctrmm(), plasma::plasma_init(), side, and uplo.

| subroutine plasma_wrap_ctrsm | ( | character, intent(in) | SIDE, |
| character, intent(in) | UPLO, | ||
| character, intent(in) | TRANSA, | ||
| character, intent(in) | DIAG, | ||
| integer, intent(in) | M, | ||
| integer, intent(in) | N, | ||
| complex, intent(in) | ALPHA, | ||
| complex, dimension(lda,*), intent(in), target | A, | ||
| integer, intent(in) | LDA, | ||
| complex, dimension(ldb,*), intent(inout), target | B, | ||
| integer, intent(in) | LDB | ||
| ) |
Definition at line 671 of file plasma_cf90_wrappers.F90.
References diag, plasma_c::plasma_ctrsm(), plasma::plasma_init(), side, and uplo.

| subroutine plasma_wrap_ctrtri | ( | character, intent(in) | UPLO, |
| character, intent(in) | DIAG, | ||
| integer, intent(in) | N, | ||
| complex, dimension(lda,*), intent(inout), target | A, | ||
| integer, intent(in) | LDA, | ||
| integer, intent(out) | INFO | ||
| ) |
Definition at line 299 of file plasma_cf90_wrappers.F90.
References diag, plasma_c::plasma_ctrtri(), plasma::plasma_init(), and uplo.
