HomeSort by relevance Sort by last modified time
    Searched refs:lwork (Results 1 - 11 of 11) sorted by null

  /external/eigen/bench/btl/libs/BLAS/
blas_interface.hh 32 void ssytrd_(char *uplo, const int *n, float *a, const int *lda, float *d, float *e, float *tau, float *work, int *lwork, int *info );
33 void dsytrd_(char *uplo, const int *n, double *a, const int *lda, double *d, double *e, double *tau, double *work, int *lwork, int *info );
34 void sgehrd_( const int *n, int *ilo, int *ihi, float *a, const int *lda, float *tau, float *work, int *lwork, int *info );
35 void dgehrd_( const int *n, int *ilo, int *ihi, double *a, const int *lda, double *tau, double *work, int *lwork, int *info );
  /external/eigen/lapack/
eigenvalues.cpp 14 EIGEN_LAPACK_FUNC(syev,(char *jobz, char *uplo, int* n, Scalar* a, int *lda, Scalar* w, Scalar* /*work*/, int* lwork, int *info))
17 bool query_size = *lwork==-1;
24 else if((!query_size) && *lwork<std::max(1,3**n-1)) *info = -8;
34 *lwork = 0;
svd.cpp 14 EIGEN_LAPACK_FUNC(gesdd,(char *jobz, int *m, int* n, Scalar* a, int *lda, RealScalar *s, Scalar *u, int *ldu, Scalar *vt, int *ldvt, Scalar* /*work*/, int* lwork,
18 bool query_size = *lwork==-1;
41 *lwork = 0;
85 EIGEN_LAPACK_FUNC(gesvd,(char *jobu, char *jobv, int *m, int* n, Scalar* a, int *lda, RealScalar *s, Scalar *u, int *ldu, Scalar *vt, int *ldvt, Scalar* /*work*/, int* lwork,
89 bool query_size = *lwork==-1;
111 *lwork = 0;
  /external/tensorflow/tensorflow/core/kernels/
cuda_solvers.cc 366 int lwork; local
368 bufsize(cusolver_dn_handle, uplo, n, CUDAComplex(A), lda, &lwork));
371 cuda_solver->GetScratchSpace<Scalar>(lwork, "", /* on_host */ false);
375 CUDAComplex(dev_workspace.mutable_data()), lwork, dev_lapack_info));
399 int lwork; local
401 bufsize(cusolver_dn_handle, m, n, CUDAComplex(A), lda, &lwork));
404 cuda_solver->GetScratchSpace<Scalar>(lwork, "", /* on_host */ false);
459 int lwork; local
461 bufsize(cusolver_dn_handle, m, n, CUDAComplex(A), lda, &lwork));
464 cuda_solver->GetScratchSpace<Scalar>(lwork, "", /* on_host */ false)
494 int lwork; local
538 int lwork; local
579 int lwork; local
619 int lwork; local
657 int lwork; local
    [all...]
  /external/eigen/Eigen/src/misc/
lapacke.h     [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU_Memory.h 143 * \param lwork if lwork=-1, this routine returns an estimated size of the required memory
147 * \return an estimated size of the required memory if lwork = -1; otherwise, return the size of actually allocated memory when allocation failed, and 0 on success
151 Index SparseLUImpl<Scalar,StorageIndex>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu)
160 if (lwork == emptyIdxLU)
SparseLUImpl.h 36 Index memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu);
SparseLU.h 492 * failure occurred, plus A->ncol. If lwork = -1, it is
540 Index lwork = 0; local
541 Index info = Base::memInit(m, n, nnz, lwork, m_perfv.fillfactor, m_perfv.panel_size, m_glu);
  /external/wpa_supplicant_8/wpa_supplicant/
dpp_supplicant.c 536 static void wpas_dpp_listen_work_free(struct wpas_dpp_listen_work *lwork)
538 if (!lwork)
540 os_free(lwork);
546 struct wpas_dpp_listen_work *lwork; local
551 lwork = wpa_s->dpp_listen_work->ctx;
552 wpas_dpp_listen_work_free(lwork);
561 struct wpas_dpp_listen_work *lwork = work->ctx; local
568 wpas_dpp_listen_work_free(lwork);
574 wpa_s->dpp_pending_listen_freq = lwork->freq;
576 if (wpa_drv_remain_on_channel(wpa_s, lwork->freq
594 struct wpas_dpp_listen_work *lwork; local
    [all...]
p2p_supplicant.c 2485 struct wpas_p2p_listen_work *lwork; local
2500 struct wpas_p2p_listen_work *lwork = work->ctx; local
2553 struct wpas_p2p_listen_work *lwork; local
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 27 SuperMatrix *U, void *work, int lwork, \
35 U, work, lwork, B, X, recip_pivot_growth, rcond, \
51 SuperMatrix *U, void *work, int lwork, \
58 U, work, lwork, B, X, recip_pivot_growth, rcond, \
86 SuperMatrix *U, void *work, int lwork, \
93 U, work, lwork, B, X, recip_pivot_growth, rcond, \
    [all...]

Completed in 182 milliseconds