Searched refs:panel_size (Results 1 – 5 of 5) sorted by relevance
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorScanSycl.h | 355 const Index &panel_size; member 376 panel_size(panel_size_), in ScanInfo() 396 …const Index max_threads = std::min(Index(panel_threads * panel_size), Index(EIGEN_SYCL_MAX_GLOBAL_… in ScanInfo() 398 const Index max_threads = panel_threads * panel_size; in ScanInfo() 402 …std::ceil(double(elements_per_panel * panel_size) / (global_range * ScanParameters<Index>::ScanPer… in ScanInfo() 417 … const Index scan_size, const Index panel_size, in adjust_scan_block_offset() 421 …ScanInfo<Index>(total_size, scan_size, panel_size, non_scan_size, scan_stride, non_scan_stride, de… in adjust_scan_block_offset() 435 … const Index total_size, const Index scan_size, const Index panel_size, in scan_block() 440 …ScanInfo<Index>(total_size, scan_size, panel_size, non_scan_size, scan_stride, non_scan_stride, de… in scan_block() 441 const Index temp_pointer_size = scan_info.block_size * non_scan_size * panel_size; in scan_block() [all …]
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU.h | 462 m_perfv.panel_size = 16; in initperfvalues() 634 Index maxpanel = m_perfv.panel_size * m; in factorize() 637 Index info = Base::memInit(m, n, nnz, lwork, m_perfv.fillfactor, m_perfv.panel_size, m_glu); in factorize() 661 …tempv.setZero(internal::LUnumTempV(m, m_perfv.panel_size, m_perfv.maxsuper, /*m_perfv.rowblk*/m) ); in factorize() 694 Index panel_size = m_perfv.panel_size; // upper bound on panel width in factorize() local 695 for (k = jcol + 1; k < (std::min)(jcol+panel_size, n); k++) in factorize() 699 panel_size = k - jcol; in factorize() 704 panel_size = n - jcol; in factorize() 707 …Base::panel_dfs(m, panel_size, jcol, m_mat, m_perm_r.indices(), nseg1, dense, panel_lsub, segrep, … in factorize() 710 Base::panel_bmod(m, panel_size, jcol, nseg1, dense, tempv, segrep, repfnz, m_glu); in factorize() [all …]
|
D | SparseLU_Memory.h | 151 …Init(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& gl… in memInit() argument 159 …tempSpace = (2*panel_size + 4 + LUNoMarker) * m * sizeof(Index) + (panel_size + 1) * m * sizeof(Sc… in memInit()
|
D | SparseLU_Structs.h | 97 Index panel_size; // a panel consists of at most <panel_size> consecutive columns member
|
D | SparseLUImpl.h | 36 …Index memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, Globa…
|