Home
last modified time | relevance | path

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

/petsc/src/mat/impls/dense/seq/cupm/
H A Dmatseqdensecupm.hpp1558 const auto m_x = X->rmap->n, m_y = Y->rmap->n; in AXPY() local
1560 const auto N = m_x * n_x; in AXPY()
1564 if (!m_x || !n_x || alpha == (PetscScalar)0.0) PetscFunctionReturn(PETSC_SUCCESS); in AXPY()
1573 if (lda_x > m_x || lda_y > m_x) { in AXPY()
1580 const auto sub_mat_x = detail::make_submat_iterator(0, m_x, 0, n_x, lda_x, dx.data()); in AXPY()