Home
last modified time | relevance | path

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

/honee/qfunctions/
H A Dutils.h81 …NM(const CeedScalar *A, const CeedScalar *x, const CeedInt N, const CeedInt M, const CeedTranspose… in MatVecNM() argument
85 CeedPragmaSIMD for (CeedInt i = 0; i < N; i++) b[i] += DotN(&A[i * M], x, M); in MatVecNM()
88 …CeedPragmaSIMD for (CeedInt i = 0; i < M; i++) { CeedPragmaSIMD for (CeedInt j = 0; j < N; j++) b[… in MatVecNM()
105 …NM(const CeedScalar *A, const CeedScalar *D, const CeedInt N, const CeedInt M, const CeedTranspose… in MatDiagNM() argument
109 … 0; i < N; i++) { CeedPragmaSIMD for (CeedInt j = 0; j < M; j++) B[i * M + j] += D[i] * A[i * M + … in MatDiagNM()
112 …agmaSIMD for (CeedInt i = 0; i < M; i++) { CeedPragmaSIMD for (CeedInt j = 0; j < N; j++) B[i * N … in MatDiagNM()
230 …t CeedScalar *mat_A, const CeedScalar *mat_B, CeedScalar *mat_C, CeedInt N, CeedInt M, CeedInt P) { in MatMatNM() argument
232 for (CeedInt j = 0; j < M; j++) { in MatMatNM()
233 for (CeedInt k = 0; k < P; k++) mat_C[i * M + j] += mat_A[i * P + k] * mat_B[k * M + j]; in MatMatNM()
/honee/doc/
H A Dreferences.bib13 author = {Giraldo, F. X. and Restelli, M. and Läuter, M.},
65 …author = {Straka, Jerry M and Wilhelmson, Robert B and Wicker, Louis J and Anderson, John R and…
227 author = {Germano, M.},
H A Dauxiliary.md41 \bm M u_N = \int_0^{L_x} \int_0^{L_y} u \psi^\mathrm{parent}_N \mathrm{d}y \mathrm{d}x
43 where $\bm M$ is the mass matrix for $\mathcal{V}_p^\mathrm{parent}$, $u_N$ the coefficients of the…
47 \bm M [\langle \phi \rangle_z]_N = \int_0^{L_x} \int_0^{L_y} \left [\frac{1}{L_z} \int_0^{L_z} \phi…
53 \bm M [\langle \phi \rangle_z]_N = \frac{1}{L_z} \int_\Omega \phi(x,y,z,t) \psi^\mathrm{parent}_N(x…
73 \bm M [\langle \phi \rangle]_N = \frac{1}{L_z + (T_f - T_0)} \int_\Omega \int_{T_0}^{T_f} \phi(x,y,…
/honee/problems/
H A Dsgs_dd_model.c583 …rorCode TransposeMatrix(const PetscScalar *A, PetscScalar *B, const PetscInt N, const PetscInt M) { in TransposeMatrix() argument
586 for (PetscInt j = 0; j < M; j++) { in TransposeMatrix()
587 B[j * N + i] = A[i * M + j]; in TransposeMatrix()