Lines Matching refs:nprofs
35 … CalcCholeskyDecomp(MPI_Comm comm, PetscInt nprofs, const CeedScalar Rij[6][nprofs], CeedScalar Ci… in CalcCholeskyDecomp() argument
37 for (PetscInt i = 0; i < nprofs; i++) { in CalcCholeskyDecomp()
74 CeedScalar rij[6][stg_ctx->nprofs]; in ReadStgInflow()
78 …CeedScalar(*ubar)[stg_ctx->nprofs] = (CeedScalar(*)[stg_ctx->nprofs]) & stg_ctx->data[stg_ctx->off… in ReadStgInflow()
80 for (PetscInt i = 0; i < stg_ctx->nprofs; i++) { in ReadStgInflow()
104 …CeedScalar(*cij)[stg_ctx->nprofs] = (CeedScalar(*)[stg_ctx->nprofs]) & stg_ctx->data[stg_ctx->offs… in ReadStgInflow()
105 PetscCall(CalcCholeskyDecomp(comm, stg_ctx->nprofs, rij, cij)); in ReadStgInflow()
168 PetscInt nmodes, nprofs; in GetStgContextData() local
172 PetscCall(PhastaDatFileGetNRows(comm, stg_inflow_path, &nprofs)); in GetStgContextData()
182 temp_ctx->nprofs = nprofs; in GetStgContextData()
188 temp_ctx->offsets.ubar = temp_ctx->offsets.wall_dist + nprofs; in GetStgContextData()
189 temp_ctx->offsets.cij = temp_ctx->offsets.ubar + nprofs * 3; in GetStgContextData()
190 temp_ctx->offsets.eps = temp_ctx->offsets.cij + nprofs * 6; in GetStgContextData()
191 temp_ctx->offsets.lt = temp_ctx->offsets.eps + nprofs; in GetStgContextData()
192 PetscInt total_num_scalars = temp_ctx->offsets.lt + nprofs; in GetStgContextData()
209 CeedPragmaSIMD for (PetscInt i = 0; i < (*stg_ctx)->nprofs; i++) { in GetStgContextData()