Home
last modified time | relevance | path

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

/libCEED/examples/petsc/include/
H A Dbpsproblemdata.h42 .in_mode = CEED_EVAL_INTERP,
59 .in_mode = CEED_EVAL_INTERP,
76 .in_mode = CEED_EVAL_GRAD,
93 .in_mode = CEED_EVAL_GRAD,
110 .in_mode = CEED_EVAL_GRAD,
127 .in_mode = CEED_EVAL_GRAD,
144 .in_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
161 .in_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
178 .in_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
195 .in_mode = CEED_EVAL_INTERP + CEED_EVAL_GRAD,
H A Dsphereproblemdata.h40 .in_mode = CEED_EVAL_INTERP,
56 .in_mode = CEED_EVAL_INTERP,
72 .in_mode = CEED_EVAL_GRAD,
88 .in_mode = CEED_EVAL_GRAD,
104 .in_mode = CEED_EVAL_GRAD,
120 .in_mode = CEED_EVAL_GRAD,
H A Dareaproblemdata.h38 .in_mode = CEED_EVAL_INTERP,
53 .in_mode = CEED_EVAL_INTERP,
H A Dstructs.h62 CeedEvalMode in_mode, out_mode; member
/libCEED/examples/petsc/src/
H A Dlibceedsetup.c108 PetscBool is_interp = bp_data.in_mode == CEED_EVAL_INTERP; in SetupLibceedByDegree()
109 CeedInt in_scale = bp_data.in_mode == CEED_EVAL_GRAD ? topo_dim : 1; in SetupLibceedByDegree()
113 if (bp_data.in_mode == CEED_EVAL_INTERP + CEED_EVAL_GRAD) { in SetupLibceedByDegree()
117 … CeedQFunctionAddInput(qf_apply, is_interp ? "u" : "du", num_comp_u * in_scale, bp_data.in_mode); in SetupLibceedByDegree()
129 if (bp_data.in_mode == CEED_EVAL_INTERP + CEED_EVAL_GRAD) { in SetupLibceedByDegree()
H A Dswarmutils.c697 CeedInt in_scale = bp_data.in_mode == CEED_EVAL_GRAD ? dim : 1; in SetupProblemSwarm()
701 CeedQFunctionAddInput(qf_apply, "u", num_comp * in_scale, bp_data.in_mode); in SetupProblemSwarm()
/libCEED/examples/petsc/
H A Dbpsraw.c132 CeedEvalMode in_mode, out_mode; member
148 .in_mode = CEED_EVAL_INTERP,
162 .in_mode = CEED_EVAL_INTERP,
176 .in_mode = CEED_EVAL_GRAD,
190 .in_mode = CEED_EVAL_GRAD,
204 .in_mode = CEED_EVAL_GRAD,
218 .in_mode = CEED_EVAL_GRAD,
595 CeedInt in_scale = bp_options[bp_choice].in_mode == CEED_EVAL_GRAD ? 3 : 1; in main()
597 CeedQFunctionAddInput(qf_apply, "u", num_comp_u * in_scale, bp_options[bp_choice].in_mode); in main()
/libCEED/interface/
H A Dceed-qfunction.c772 int CeedQFunctionCreateIdentity(Ceed ceed, CeedInt size, CeedEvalMode in_mode, CeedEvalMode out_mod… in CeedQFunctionCreateIdentity() argument
777 CeedCall(CeedQFunctionAddInput(*qf, "input", size, in_mode)); in CeedQFunctionCreateIdentity()
/libCEED/backends/opt/
H A Dceed-opt-operator.c255 CeedEvalMode in_mode, out_mode; in CeedOperatorSetup_Opt() local
259 CeedCallBackend(CeedQFunctionFieldGetEvalMode(in_fields[0], &in_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
253 CeedCallBackend(CeedQFunctionFieldGetEvalMode(in_fields[0], &in_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
193 CeedCallBackend(CeedQFunctionFieldGetEvalMode(in_fields[0], &in_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 CEED_EXTERN int CeedQFunctionCreateIdentity(Ceed ceed, CeedInt size, CeedEvalMode in_mode, CeedEva…
/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)