Home
last modified time | relevance | path

Searched refs:ab_t (Results 1 – 25 of 891) sorted by relevance

12345678910>>...36

/dports/math/xlapack/lapack-3.10.0/LAPACKE/src/
H A Dlapacke_cpbtrf_work.c48 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
56 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
63 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
65 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
70 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()
H A Dlapacke_dpbtrf_work.c47 double* ab_t = NULL; in LAPACKE_dpbtrf_work() local
55 ab_t = (double*)LAPACKE_malloc( sizeof(double) * ldab_t * MAX(1,n) ); in LAPACKE_dpbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_dpbtrf_work()
61 LAPACKE_dpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_dpbtrf_work()
63 LAPACK_dpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_dpbtrf_work()
68 LAPACKE_dpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_dpbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_dpbtrf_work()
H A Dlapacke_zpbtrf_work.c48 lapack_complex_double* ab_t = NULL; in LAPACKE_zpbtrf_work() local
56 ab_t = (lapack_complex_double*) in LAPACKE_zpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_zpbtrf_work()
63 LAPACKE_zpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_zpbtrf_work()
65 LAPACK_zpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_zpbtrf_work()
70 LAPACKE_zpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_zpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_zpbtrf_work()
H A Dlapacke_spbtrf_work.c47 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
55 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
61 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
63 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
68 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/ext/LAPACKBLAS/LAPACKE/src/
H A Dlapacke_dpbtrf_work.c48 double* ab_t = NULL; in LAPACKE_dpbtrf_work() local
56 ab_t = (double*)LAPACKE_malloc( sizeof(double) * ldab_t * MAX(1,n) ); in LAPACKE_dpbtrf_work()
57 if( ab_t == NULL ) { in LAPACKE_dpbtrf_work()
62 LAPACKE_dpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_dpbtrf_work()
64 LAPACK_dpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_dpbtrf_work()
69 LAPACKE_dpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_dpbtrf_work()
72 LAPACKE_free( ab_t ); in LAPACKE_dpbtrf_work()
H A Dlapacke_cpbtrf_work.c49 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
57 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
59 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
64 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
66 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
71 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
74 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()
H A Dlapacke_spbtrf_work.c48 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
56 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
57 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
62 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
64 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
69 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
72 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
/dports/math/blas/lapack-3.10.0/LAPACKE/src/
H A Dlapacke_dpbtrf_work.c47 double* ab_t = NULL; in LAPACKE_dpbtrf_work() local
55 ab_t = (double*)LAPACKE_malloc( sizeof(double) * ldab_t * MAX(1,n) ); in LAPACKE_dpbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_dpbtrf_work()
61 LAPACKE_dpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_dpbtrf_work()
63 LAPACK_dpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_dpbtrf_work()
68 LAPACKE_dpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_dpbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_dpbtrf_work()
H A Dlapacke_cpbtrf_work.c48 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
56 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
63 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
65 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
70 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()
H A Dlapacke_spbtrf_work.c47 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
55 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
61 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
63 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
68 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
H A Dlapacke_zpbtrf_work.c48 lapack_complex_double* ab_t = NULL; in LAPACKE_zpbtrf_work() local
56 ab_t = (lapack_complex_double*) in LAPACKE_zpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_zpbtrf_work()
63 LAPACKE_zpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_zpbtrf_work()
65 LAPACK_zpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_zpbtrf_work()
70 LAPACKE_zpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_zpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_zpbtrf_work()
/dports/math/lapack/lapack-3.10.0/LAPACKE/src/
H A Dlapacke_cpbtrf_work.c48 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
56 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
63 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
65 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
70 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()
H A Dlapacke_zpbtrf_work.c48 lapack_complex_double* ab_t = NULL; in LAPACKE_zpbtrf_work() local
56 ab_t = (lapack_complex_double*) in LAPACKE_zpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_zpbtrf_work()
63 LAPACKE_zpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_zpbtrf_work()
65 LAPACK_zpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_zpbtrf_work()
70 LAPACKE_zpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_zpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_zpbtrf_work()
H A Dlapacke_spbtrf_work.c47 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
55 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
61 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
63 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
68 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
/dports/math/lapacke/lapack-3.10.0/LAPACKE/src/
H A Dlapacke_zpbtrf_work.c48 lapack_complex_double* ab_t = NULL; in LAPACKE_zpbtrf_work() local
56 ab_t = (lapack_complex_double*) in LAPACKE_zpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_zpbtrf_work()
63 LAPACKE_zpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_zpbtrf_work()
65 LAPACK_zpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_zpbtrf_work()
70 LAPACKE_zpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_zpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_zpbtrf_work()
H A Dlapacke_cpbtrf_work.c48 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
56 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
63 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
65 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
70 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()
H A Dlapacke_dpbtrf_work.c47 double* ab_t = NULL; in LAPACKE_dpbtrf_work() local
55 ab_t = (double*)LAPACKE_malloc( sizeof(double) * ldab_t * MAX(1,n) ); in LAPACKE_dpbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_dpbtrf_work()
61 LAPACKE_dpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_dpbtrf_work()
63 LAPACK_dpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_dpbtrf_work()
68 LAPACKE_dpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_dpbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_dpbtrf_work()
H A Dlapacke_spbtrf_work.c47 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
55 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
61 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
63 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
68 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
/dports/math/openblas/OpenBLAS-0.3.18/lapack-netlib/LAPACKE/src/
H A Dlapacke_spbtrf_work.c48 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
56 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
57 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
62 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
64 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
69 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
72 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
H A Dlapacke_dpbtrf_work.c48 double* ab_t = NULL; in LAPACKE_dpbtrf_work() local
56 ab_t = (double*)LAPACKE_malloc( sizeof(double) * ldab_t * MAX(1,n) ); in LAPACKE_dpbtrf_work()
57 if( ab_t == NULL ) { in LAPACKE_dpbtrf_work()
62 LAPACKE_dpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_dpbtrf_work()
64 LAPACK_dpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_dpbtrf_work()
69 LAPACKE_dpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_dpbtrf_work()
72 LAPACKE_free( ab_t ); in LAPACKE_dpbtrf_work()
H A Dlapacke_zpbtrf_work.c49 lapack_complex_double* ab_t = NULL; in LAPACKE_zpbtrf_work() local
57 ab_t = (lapack_complex_double*) in LAPACKE_zpbtrf_work()
59 if( ab_t == NULL ) { in LAPACKE_zpbtrf_work()
64 LAPACKE_zpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_zpbtrf_work()
66 LAPACK_zpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_zpbtrf_work()
71 LAPACKE_zpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_zpbtrf_work()
74 LAPACKE_free( ab_t ); in LAPACKE_zpbtrf_work()
H A Dlapacke_cpbtrf_work.c49 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
57 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
59 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
64 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
66 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
71 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
74 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()
/dports/math/cblas/lapack-3.10.0/LAPACKE/src/
H A Dlapacke_zpbtrf_work.c48 lapack_complex_double* ab_t = NULL; in LAPACKE_zpbtrf_work() local
56 ab_t = (lapack_complex_double*) in LAPACKE_zpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_zpbtrf_work()
63 LAPACKE_zpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_zpbtrf_work()
65 LAPACK_zpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_zpbtrf_work()
70 LAPACKE_zpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_zpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_zpbtrf_work()
H A Dlapacke_spbtrf_work.c47 float* ab_t = NULL; in LAPACKE_spbtrf_work() local
55 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) ); in LAPACKE_spbtrf_work()
56 if( ab_t == NULL ) { in LAPACKE_spbtrf_work()
61 LAPACKE_spb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_spbtrf_work()
63 LAPACK_spbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_spbtrf_work()
68 LAPACKE_spb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_spbtrf_work()
71 LAPACKE_free( ab_t ); in LAPACKE_spbtrf_work()
H A Dlapacke_cpbtrf_work.c48 lapack_complex_float* ab_t = NULL; in LAPACKE_cpbtrf_work() local
56 ab_t = (lapack_complex_float*) in LAPACKE_cpbtrf_work()
58 if( ab_t == NULL ) { in LAPACKE_cpbtrf_work()
63 LAPACKE_cpb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t ); in LAPACKE_cpbtrf_work()
65 LAPACK_cpbtrf( &uplo, &n, &kd, ab_t, &ldab_t, &info ); in LAPACKE_cpbtrf_work()
70 LAPACKE_cpb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab, in LAPACKE_cpbtrf_work()
73 LAPACKE_free( ab_t ); in LAPACKE_cpbtrf_work()

12345678910>>...36