Home
last modified time | relevance | path

Searched refs:build_qfunc (Results 1 – 8 of 8) sorted by relevance

/libCEED/examples/mfem/
H A Dbp1.hpp24 CeedQFunction apply_qfunc, build_qfunc; member in CeedMassOperator
123 CeedQFunctionCreateInterior(ceed, 1, f_build_mass, f_build_mass_loc, &build_qfunc); in CeedMassOperator()
124 CeedQFunctionAddInput(build_qfunc, "dx", ncompx * dim, CEED_EVAL_GRAD); in CeedMassOperator()
125 CeedQFunctionAddInput(build_qfunc, "weights", 1, CEED_EVAL_WEIGHT); in CeedMassOperator()
126 CeedQFunctionAddOutput(build_qfunc, "qdata", 1, CEED_EVAL_NONE); in CeedMassOperator()
127 CeedQFunctionSetContext(build_qfunc, build_ctx); in CeedMassOperator()
130 CeedOperatorCreate(ceed, build_qfunc, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &build_oper); in CeedMassOperator()
161 CeedQFunctionDestroy(&build_qfunc); in ~CeedMassOperator()
H A Dbp3.hpp24 CeedQFunction apply_qfunc, build_qfunc; member in CeedDiffusionOperator
124 CeedQFunctionCreateInterior(ceed, 1, f_build_diff, f_build_diff_loc, &build_qfunc); in CeedDiffusionOperator()
125 CeedQFunctionAddInput(build_qfunc, "dx", ncompx * dim, CEED_EVAL_GRAD); in CeedDiffusionOperator()
126 CeedQFunctionAddInput(build_qfunc, "weights", 1, CEED_EVAL_WEIGHT); in CeedDiffusionOperator()
127 CeedQFunctionAddOutput(build_qfunc, "qdata", dim * (dim + 1) / 2, CEED_EVAL_NONE); in CeedDiffusionOperator()
128 CeedQFunctionSetContext(build_qfunc, build_ctx); in CeedDiffusionOperator()
131 CeedOperatorCreate(ceed, build_qfunc, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &build_oper); in CeedDiffusionOperator()
167 CeedQFunctionDestroy(&build_qfunc); in ~CeedDiffusionOperator()
/libCEED/julia/LibCEED.jl/examples/
H A Dex1-volume-c.jl274 build_qfunc = Ref{C.CeedQFunction}()
294 C.CeedQFunctionCreateInterior(ceed[], 1, qf_build_mass, "julia", build_qfunc)
295 C.CeedQFunctionAddInput(build_qfunc[], "dx", ncompx*dim, C.CEED_EVAL_GRAD)
296 C.CeedQFunctionAddInput(build_qfunc[], "weights", 1, C.CEED_EVAL_WEIGHT)
297 C.CeedQFunctionAddOutput(build_qfunc[], "qdata", 1, C.CEED_EVAL_NONE)
298 C.CeedQFunctionSetContext(build_qfunc[], qf_ctx[])
302 C.CeedQFunctionCreateInteriorByName(ceed[], name, build_qfunc)
309 build_qfunc[],
418 C.CeedQFunctionDestroy(build_qfunc)
H A Dex2-surface.jl73 @interior_qf build_qfunc = (
85 build_qfunc = create_interior_qfunction(ceed, "Poisson$(dim)DBuild")
92 qf=build_qfunc,
H A Dex1-volume.jl70 @interior_qf build_qfunc = (
81 build_qfunc = create_interior_qfunction(ceed, "Mass$(dim)DBuild")
87 qf=build_qfunc,
H A Dex3-volume.jl78 @interior_qf build_qfunc = (
105 qf=build_qfunc,
/libCEED/julia/LibCEED.jl/src/
H A DOperator.jl36 qf=build_qfunc,
H A DUserQFunction.jl231 @interior_qf build_qfunc = (