Lines Matching refs:PetscCallCeed
40 PetscCallCeed(ceed, in CreateStatisticCollectionOperator()
44 …PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollection_2D_Conserv, ChildSta… in CreateStatisticCollectionOperator()
48 …PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollection_2D_Entropy, ChildSta… in CreateStatisticCollectionOperator()
56 PetscCallCeed(ceed, in CreateStatisticCollectionOperator()
60 …PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollection_3D_Conserv, ChildSta… in CreateStatisticCollectionOperator()
64 …PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollection_3D_Entropy, ChildSta… in CreateStatisticCollectionOperator()
86 …PetscCallCeed(ceed, CeedQFunctionContextGetData(problem->apply_vol_rhs.qfctx, CEED_MEM_HOST, &adve… in CreateStatisticCollectionOperator()
89 …PetscCallCeed(ceed, CeedQFunctionContextRestoreData(problem->apply_vol_rhs.qfctx, &advection_ctx)); in CreateStatisticCollectionOperator()
93 …PetscCallCeed(ceed, CeedQFunctionContextGetData(problem->apply_vol_rhs.qfctx, CEED_MEM_HOST, &newt… in CreateStatisticCollectionOperator()
96 …PetscCallCeed(ceed, CeedQFunctionContextRestoreData(problem->apply_vol_rhs.qfctx, &newtonian_ig_ct… in CreateStatisticCollectionOperator()
99 PetscCallCeed(ceed, CeedQFunctionContextCreate(honee->ceed, &collect_qfctx)); in CreateStatisticCollectionOperator()
100 …PetscCallCeed(ceed, CeedQFunctionContextSetData(collect_qfctx, CEED_MEM_HOST, CEED_USE_POINTER, si… in CreateStatisticCollectionOperator()
101 …PetscCallCeed(ceed, CeedQFunctionContextSetDataDestroy(collect_qfctx, CEED_MEM_HOST, FreeContextPe… in CreateStatisticCollectionOperator()
103 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(collect_qfctx, "solution time", offsetof(st… in CreateStatisticCollectionOperator()
105 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(collect_qfctx, "previous time", offsetof(st… in CreateStatisticCollectionOperator()
107 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(collect_qfctx, "timestep", offsetof(struct … in CreateStatisticCollectionOperator()
111 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_stats_collect, collect_qfctx)); in CreateStatisticCollectionOperator()
112 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&collect_qfctx)); in CreateStatisticCollectionOperator()
113 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_stats_collect, "q", num_comp_q, CEED_EVAL_INTERP)); in CreateStatisticCollectionOperator()
114 …PetscCallCeed(ceed, CeedQFunctionAddInput(qf_stats_collect, "q_data", q_data_size, CEED_EVAL_NONE)… in CreateStatisticCollectionOperator()
115 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_stats_collect, "x", num_comp_x, CEED_EVAL_INTERP)); in CreateStatisticCollectionOperator()
116 …PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_stats_collect, "v", num_comp_stats, CEED_EVAL_NONE)); in CreateStatisticCollectionOperator()
118 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_stats_collect, NULL, NULL, &op_stats_collect)); in CreateStatisticCollectionOperator()
119 …PetscCallCeed(ceed, CeedOperatorSetField(op_stats_collect, "q", elem_restr_q, basis_q, CEED_VECTOR… in CreateStatisticCollectionOperator()
120 …PetscCallCeed(ceed, CeedOperatorSetField(op_stats_collect, "q_data", elem_restr_qd, CEED_BASIS_NON… in CreateStatisticCollectionOperator()
121 PetscCallCeed(ceed, CeedOperatorSetField(op_stats_collect, "x", elem_restr_x, basis_x, x_coord)); in CreateStatisticCollectionOperator()
122 …PetscCallCeed(ceed, CeedOperatorSetField(op_stats_collect, "v", stats_data->elem_restr_child_collo… in CreateStatisticCollectionOperator()
124 …PetscCallCeed(ceed, CeedOperatorGetContextFieldLabel(op_stats_collect, "solution time", &spanstats… in CreateStatisticCollectionOperator()
125 …PetscCallCeed(ceed, CeedOperatorGetContextFieldLabel(op_stats_collect, "previous time", &spanstats… in CreateStatisticCollectionOperator()
126 …PetscCallCeed(ceed, CeedOperatorGetContextFieldLabel(op_stats_collect, "timestep", &spanstats->tim… in CreateStatisticCollectionOperator()
134 PetscCallCeed(ceed, CeedVectorDestroy(&q_data)); in CreateStatisticCollectionOperator()
135 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_qd)); in CreateStatisticCollectionOperator()
136 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_stats_collect)); in CreateStatisticCollectionOperator()
137 PetscCallCeed(ceed, CeedOperatorDestroy(&op_stats_collect)); in CreateStatisticCollectionOperator()
138 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_q)); in CreateStatisticCollectionOperator()
139 PetscCallCeed(ceed, CeedBasisDestroy(&basis_q)); in CreateStatisticCollectionOperator()
140 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_x)); in CreateStatisticCollectionOperator()
141 PetscCallCeed(ceed, CeedBasisDestroy(&basis_x)); in CreateStatisticCollectionOperator()
142 PetscCallCeed(ceed, CeedVectorDestroy(&x_coord)); in CreateStatisticCollectionOperator()
204 …PetscCallCeed(honee->ceed, CeedOperatorSetContextDouble(spanstats->op_stats_collect_ctx->op, spans… in TSMonitor_SpanwiseStatisticsCflPe()