Lines Matching refs:PetscCallCeed

51   PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(elem_restr_q, &num_comp_q));  in SetupMontiorCfl()
59 PetscCallCeed(ceed, CeedOperatorCompositeGetSubList(main_op, &sub_ops)); in SetupMontiorCfl()
60 PetscCallCeed(ceed, CeedOperatorGetContext(sub_ops[sub_op_index], &newt_qfctx)); in SetupMontiorCfl()
67PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MonitorCFL_2D_Prim, MonitorCFL_2D_Prim_lo… in SetupMontiorCfl()
70PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MonitorCFL_2D_Conserv, MonitorCFL_2D_Cons… in SetupMontiorCfl()
73PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MonitorCFL_2D_Entropy, MonitorCFL_2D_Entr… in SetupMontiorCfl()
80PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MonitorCFL_3D_Prim, MonitorCFL_3D_Prim_lo… in SetupMontiorCfl()
83PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MonitorCFL_3D_Conserv, MonitorCFL_3D_Cons… in SetupMontiorCfl()
86PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MonitorCFL_3D_Entropy, MonitorCFL_3D_Entr… in SetupMontiorCfl()
100 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&newt_qfctx)); in SetupMontiorCfl()
101 PetscCallCeed(ceed, CeedQFunctionContextCreate(ceed, &newt_qfctx)); in SetupMontiorCfl()
102PetscCallCeed(ceed, CeedQFunctionContextSetData(newt_qfctx, CEED_MEM_HOST, CEED_USE_POINTER, sizeo… in SetupMontiorCfl()
103PetscCallCeed(ceed, CeedQFunctionContextSetDataDestroy(newt_qfctx, CEED_MEM_HOST, FreeContextPetsc… in SetupMontiorCfl()
106 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_monitor, newt_qfctx)); in SetupMontiorCfl()
107 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_monitor, "q", num_comp_q, CEED_EVAL_INTERP)); in SetupMontiorCfl()
108 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_monitor, "q_data", q_data_size, CEED_EVAL_NONE)); in SetupMontiorCfl()
109 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_monitor, "v", num_comp_cfl, CEED_EVAL_NONE)); in SetupMontiorCfl()
111 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_monitor, NULL, NULL, &op_monitor)); in SetupMontiorCfl()
112PetscCallCeed(ceed, CeedOperatorSetField(op_monitor, "q", elem_restr_q, basis_q, CEED_VECTOR_ACTIV… in SetupMontiorCfl()
113PetscCallCeed(ceed, CeedOperatorSetField(op_monitor, "q_data", elem_restr_qd, CEED_BASIS_NONE, q_d… in SetupMontiorCfl()
114PetscCallCeed(ceed, CeedOperatorSetField(op_monitor, "v", elem_restr_cfl, CEED_BASIS_NONE, CEED_VE… in SetupMontiorCfl()
127 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&newt_qfctx)); in SetupMontiorCfl()
128 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_qd)); in SetupMontiorCfl()
129 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_q)); in SetupMontiorCfl()
130 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_cfl)); in SetupMontiorCfl()
131 PetscCallCeed(ceed, CeedBasisDestroy(&basis_q)); in SetupMontiorCfl()
132 PetscCallCeed(ceed, CeedVectorDestroy(&q_data)); in SetupMontiorCfl()
133 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_monitor)); in SetupMontiorCfl()
134 PetscCallCeed(ceed, CeedOperatorDestroy(&op_monitor)); in SetupMontiorCfl()