Home
last modified time | relevance | path

Searched refs:qf_error (Results 1 – 6 of 6) sorted by relevance

/libCEED/examples/petsc/
H A Dbpssphere.c63 CeedQFunction qf_error; in main() local
185 …onCreateInterior(ceed, 1, bp_options[bp_choice].error, bp_options[bp_choice].error_loc, &qf_error); in main()
186 CeedQFunctionAddInput(qf_error, "u", num_comp_u, CEED_EVAL_INTERP); in main()
187 CeedQFunctionAddInput(qf_error, "true_soln", num_comp_u, CEED_EVAL_NONE); in main()
188 CeedQFunctionAddInput(qf_error, "qdata", ceed_data->q_data_size, CEED_EVAL_NONE); in main()
189 CeedQFunctionAddOutput(qf_error, "error", num_comp_u, CEED_EVAL_INTERP); in main()
192 CeedOperatorCreate(ceed, qf_error, NULL, NULL, &op_error); in main()
324 CeedQFunctionDestroy(&qf_error); in main()
H A Dbps.c64 CeedQFunction qf_error; in RunWithDM() local
177 …Interior(ceed, 1, bp_options[rp->bp_choice].error, bp_options[rp->bp_choice].error_loc, &qf_error); in RunWithDM()
178 CeedQFunctionAddInput(qf_error, "u", rp->num_comp_u, CEED_EVAL_INTERP); in RunWithDM()
179 CeedQFunctionAddInput(qf_error, "true_soln", rp->num_comp_u, CEED_EVAL_NONE); in RunWithDM()
180 CeedQFunctionAddInput(qf_error, "qdata", ceed_data->q_data_size, CEED_EVAL_NONE); in RunWithDM()
181 CeedQFunctionAddOutput(qf_error, "error", rp->num_comp_u, CEED_EVAL_INTERP); in RunWithDM()
184 CeedOperatorCreate(ceed, qf_error, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_error); in RunWithDM()
313 CeedQFunctionDestroy(&qf_error); in RunWithDM()
H A Dmultigrid.c69 CeedQFunction qf_error; in main() local
281 …onCreateInterior(ceed, 1, bp_options[bp_choice].error, bp_options[bp_choice].error_loc, &qf_error); in main()
282 CeedQFunctionAddInput(qf_error, "u", num_comp_u, CEED_EVAL_INTERP); in main()
283 CeedQFunctionAddInput(qf_error, "true_soln", num_comp_u, CEED_EVAL_NONE); in main()
284 CeedQFunctionAddInput(qf_error, "qdata", ceed_data[fine_level]->q_data_size, CEED_EVAL_NONE); in main()
285 CeedQFunctionAddOutput(qf_error, "error", num_comp_u, CEED_EVAL_INTERP); in main()
288 CeedOperatorCreate(ceed, qf_error, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_error); in main()
572 CeedQFunctionDestroy(&qf_error); in main()
H A Dbpsraw.c357 CeedQFunction qf_setup_geo, qf_setup_rhs, qf_apply, qf_error; in main() local
602 …onCreateInterior(ceed, 1, bp_options[bp_choice].error, bp_options[bp_choice].error_loc, &qf_error); in main()
603 CeedQFunctionAddInput(qf_error, "u", num_comp_u, CEED_EVAL_INTERP); in main()
604 CeedQFunctionAddInput(qf_error, "true_soln", num_comp_u, CEED_EVAL_NONE); in main()
605 CeedQFunctionAddInput(qf_error, "qdata", bp_options[bp_choice].q_data_size, CEED_EVAL_NONE); in main()
606 CeedQFunctionAddOutput(qf_error, "error", num_comp_u, CEED_EVAL_NONE); in main()
636 CeedOperatorCreate(ceed, qf_error, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_error); in main()
808 CeedQFunctionDestroy(&qf_error); in main()
/libCEED/examples/petsc/src/
H A Dlibceedsetup.c248 CeedQFunction qf_setup_geo, qf_setup_rhs, qf_error; in SetupErrorOperator() local
332 CeedQFunctionCreateInterior(ceed, 1, bp_data.error, bp_data.error_loc, &qf_error); in SetupErrorOperator()
333 CeedQFunctionAddInput(qf_error, "u", num_comp_u, CEED_EVAL_INTERP); in SetupErrorOperator()
334 CeedQFunctionAddInput(qf_error, "true_soln", num_comp_u, CEED_EVAL_NONE); in SetupErrorOperator()
335 CeedQFunctionAddInput(qf_error, "qdata", q_data_size, CEED_EVAL_NONE); in SetupErrorOperator()
336 CeedQFunctionAddOutput(qf_error, "error", num_comp_u, CEED_EVAL_INTERP); in SetupErrorOperator()
339 CeedOperatorCreate(ceed, qf_error, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, op_error); in SetupErrorOperator()
350 CeedQFunctionDestroy(&qf_error); in SetupErrorOperator()
/libCEED/examples/fluids/src/
H A Dturb_spanstats.c438 CeedQFunction qf_error; in SetupMMSErrorChecking() local
451 …ior(ceed, 1, ChildStatsCollectionMMSTest_Error, ChildStatsCollectionMMSTest_Error_loc, &qf_error)); in SetupMMSErrorChecking()
452 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_error, "q", num_comp_stats, CEED_EVAL_INTERP)); in SetupMMSErrorChecking()
453 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_error, "qdata", q_data_size, CEED_EVAL_NONE)); in SetupMMSErrorChecking()
454 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_error, "x", num_comp_x, CEED_EVAL_INTERP)); in SetupMMSErrorChecking()
455 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_error, "v", num_comp_stats, CEED_EVAL_INTERP)); in SetupMMSErrorChecking()
457 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_error, NULL, NULL, &op_error)); in SetupMMSErrorChecking()
472 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_error)); in SetupMMSErrorChecking()