Home
last modified time | relevance | path

Searched refs:worksize (Results 1 – 1 of 1) sorted by relevance

/external/eigen/bench/btl/libs/BLAS/
Dblas_interface_impl.hh121 int worksize = N*bsize; in hessenberg() local
122 SCALAR* d = new SCALAR[N+worksize]; in hessenberg()
123 BLAS_FUNC(gehrd)(&N, &ilo, &ihi, C, &N, d, d+N, &worksize, &info); in hessenberg()
136 int worksize = N*bsize; in tridiagonalization() local
137 SCALAR* d = new SCALAR[3*N+worksize]; in tridiagonalization()
138 BLAS_FUNC(sytrd)(&uplo, &N, C, &N, d, d+N, d+2*N, d+3*N, &worksize, &info); in tridiagonalization()