Home
last modified time | relevance | path

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

/libCEED/examples/fluids/include/
H A Dpetsc-ceed-utils.h210 CeedSize x_size; in VecCopyPetscToCeed() local
216 PetscCallCeed(ceed, CeedVectorGetLength(x_ceed, &x_size)); in VecCopyPetscToCeed()
217 …PetscCheck(X_size == x_size, PETSC_COMM_WORLD, PETSC_ERR_ARG_SIZ, "X_petsc (%" PetscInt_FMT ") and… in VecCopyPetscToCeed()
218 X_size, x_size); in VecCopyPetscToCeed()
/libCEED/examples/fluids/src/
H A Dpetsc_ops.c61 CeedSize x_size, y_size; in OperatorApplyContextCreate() local
64 PetscCallCeed(ceed, CeedOperatorGetActiveVectorLengths(op_apply, &x_size, &y_size)); in OperatorApplyContextCreate()
72 PetscCheck(X_size == x_size, PETSC_COMM_WORLD, PETSC_ERR_ARG_SIZ, in OperatorApplyContextCreate()
73 …t_FMT ") not correct size for CeedOperator active input size (%" CeedSize_FMT ")", X_size, x_size); in OperatorApplyContextCreate()
90 PetscCheck(x_size >= 0 ? x_ceed_size == x_size : true, PETSC_COMM_WORLD, PETSC_ERR_ARG_SIZ, in OperatorApplyContextCreate()
91 … ") not correct size for CeedOperator active input size (%" CeedSize_FMT ")", x_ceed_size, x_size); in OperatorApplyContextCreate()
123 else PetscCallCeed(ceed, CeedVectorCreate(ceed, x_size, &(*ctx)->x_ceed)); in OperatorApplyContextCreate()