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.hh123 int worksize = N*bsize; in hessenberg() local
124 SCALAR* d = new SCALAR[N+worksize]; in hessenberg()
125 BLAS_FUNC(gehrd)(&N, &ilo, &ihi, C, &N, d, d+N, &worksize, &info); in hessenberg()
140 int worksize = N*bsize; in tridiagonalization() local
141 SCALAR* d = new SCALAR[3*N+worksize]; in tridiagonalization()
142 BLAS_FUNC(sytrd)(&uplo, &N, C, &N, d, d+N, d+2*N, d+3*N, &worksize, &info); in tridiagonalization()