Home
last modified time | relevance | path

Searched refs:out_mode (Results 1 – 13 of 13) sorted by relevance

/libCEED/examples/petsc/include/
H A Dbpsproblemdata.h43 .out_mode = CEED_EVAL_INTERP,
60 .out_mode = CEED_EVAL_INTERP,
77 .out_mode = CEED_EVAL_GRAD,
94 .out_mode = CEED_EVAL_GRAD,
111 .out_mode = CEED_EVAL_GRAD,
128 .out_mode = CEED_EVAL_GRAD,
145 .out_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
162 .out_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
179 .out_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
196 .out_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
H A Dsphereproblemdata.h41 .out_mode = CEED_EVAL_INTERP,
57 .out_mode = CEED_EVAL_INTERP,
73 .out_mode = CEED_EVAL_GRAD,
89 .out_mode = CEED_EVAL_GRAD,
105 .out_mode = CEED_EVAL_GRAD,
121 .out_mode = CEED_EVAL_GRAD,
H A Dareaproblemdata.h39 .out_mode = CEED_EVAL_INTERP,
54 .out_mode = CEED_EVAL_INTERP,
H A Dstructs.h62 CeedEvalMode in_mode, out_mode; member
/libCEED/examples/petsc/
H A Dbpsraw.c132 CeedEvalMode in_mode, out_mode; member
149 .out_mode = CEED_EVAL_INTERP,
163 .out_mode = CEED_EVAL_INTERP,
177 .out_mode = CEED_EVAL_GRAD,
191 .out_mode = CEED_EVAL_GRAD,
205 .out_mode = CEED_EVAL_GRAD,
219 .out_mode = CEED_EVAL_GRAD,
596 CeedInt out_scale = bp_options[bp_choice].out_mode == CEED_EVAL_GRAD ? 3 : 1; in main()
599 CeedQFunctionAddOutput(qf_apply, "v", num_comp_u * out_scale, bp_options[bp_choice].out_mode); in main()
/libCEED/examples/petsc/src/
H A Dlibceedsetup.c110 CeedInt out_scale = bp_data.out_mode == CEED_EVAL_GRAD ? topo_dim : 1; in SetupLibceedByDegree()
120 if (bp_data.out_mode == CEED_EVAL_INTERP + CEED_EVAL_GRAD) { in SetupLibceedByDegree()
124 …CeedQFunctionAddOutput(qf_apply, is_interp ? "v" : "dv", num_comp_u * out_scale, bp_data.out_mode); in SetupLibceedByDegree()
136 if (bp_data.out_mode == CEED_EVAL_INTERP + CEED_EVAL_GRAD) { in SetupLibceedByDegree()
H A Dswarmutils.c698 CeedInt out_scale = bp_data.out_mode == CEED_EVAL_GRAD ? dim : 1; in SetupProblemSwarm()
703 CeedQFunctionAddOutput(qf_apply, "v", num_comp * out_scale, bp_data.out_mode); in SetupProblemSwarm()
/libCEED/interface/
H A Dceed-qfunction.c772 …ateIdentity(Ceed ceed, CeedInt size, CeedEvalMode in_mode, CeedEvalMode out_mode, CeedQFunction *q… in CeedQFunctionCreateIdentity() argument
778 CeedCall(CeedQFunctionAddOutput(*qf, "output", size, out_mode)); in CeedQFunctionCreateIdentity()
/libCEED/backends/opt/
H A Dceed-opt-operator.c255 CeedEvalMode in_mode, out_mode; in CeedOperatorSetup_Opt() local
260 CeedCallBackend(CeedQFunctionFieldGetEvalMode(out_fields[0], &out_mode)); in CeedOperatorSetup_Opt()
262 if (in_mode == CEED_EVAL_NONE && out_mode == CEED_EVAL_NONE) { in CeedOperatorSetup_Opt()
/libCEED/backends/blocked/
H A Dceed-blocked-operator.c249 CeedEvalMode in_mode, out_mode; in CeedOperatorSetup_Blocked() local
254 CeedCallBackend(CeedQFunctionFieldGetEvalMode(out_fields[0], &out_mode)); in CeedOperatorSetup_Blocked()
256 if (in_mode == CEED_EVAL_NONE && out_mode == CEED_EVAL_NONE) { in CeedOperatorSetup_Blocked()
/libCEED/backends/ref/
H A Dceed-ref-operator.c189 CeedEvalMode in_mode, out_mode; in CeedOperatorSetup_Ref() local
194 CeedCallBackend(CeedQFunctionFieldGetEvalMode(out_fields[0], &out_mode)); in CeedOperatorSetup_Ref()
196 if (in_mode == CEED_EVAL_NONE && out_mode == CEED_EVAL_NONE) { in CeedOperatorSetup_Ref()
/libCEED/include/ceed/
H A Dceed.h380 …ateIdentity(Ceed ceed, CeedInt size, CeedEvalMode in_mode, CeedEvalMode out_mode, CeedQFunction *q…
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl530 function CeedQFunctionCreateIdentity(ceed, size, in_mode, out_mode, qf) argument
531 …(Ceed, CeedInt, CeedEvalMode, CeedEvalMode, Ptr{CeedQFunction}), ceed, size, in_mode, out_mode, qf)