Searched refs:num_q_comp (Results 1 – 6 of 6) sorted by relevance
| /libCEED/examples/python/ |
| H A D | ex3_volume.py | 87 num_q_comp = 1 + dim * (dim + 1) // 2 89 ceed, dim, num_xyz, mesh_degree, ncomp_x, num_q_comp, num_qpts, create_qdata=False) 91 ceed, dim, num_xyz, sol_degree, 1, num_q_comp, num_qpts, create_qdata=True) 117 qf_build.add_output("qdata", num_q_comp, libceed.EVAL_NONE) 127 q_data = ceed.Vector(num_elem * elem_qpts * num_q_comp) 135 qf_apply.add_input("qdata", num_q_comp, libceed.EVAL_NONE)
|
| H A D | ex1_volume.py | 82 num_q_comp = 1 84 ceed, dim, num_xyz, mesh_degree, ncomp_x, num_q_comp, num_qpts, create_qdata=False) 86 ceed, dim, num_xyz, sol_degree, 1, num_q_comp, num_qpts, create_qdata=True) 113 qf_build.add_output("qdata", num_q_comp, libceed.EVAL_NONE) 123 q_data = ceed.Vector(num_elem * elem_qpts * num_q_comp) 141 qf_mass.add_input("qdata", num_q_comp, libceed.EVAL_NONE)
|
| H A D | ex2_surface.py | 83 num_q_comp = dim * (dim + 1) // 2 85 ceed, dim, num_xyz, mesh_degree, ncomp_x, num_q_comp, num_qpts, create_qdata=False) 87 ceed, dim, num_xyz, sol_degree, 1, num_q_comp, num_qpts, create_qdata=True) 115 qf_build.add_output("qdata", num_q_comp, libceed.EVAL_NONE) 125 q_data = ceed.Vector(num_elem * elem_qpts * num_q_comp) 143 qf_diff.add_input("qdata", num_q_comp, libceed.EVAL_NONE)
|
| H A D | ex_common.py | 91 def build_cartesian_restriction(ceed, dim, num_xyz, degree, num_comp, num_q_comp, num_qpts, create_… argument 149 strides = np.array([1, elem_qpts, elem_qpts * num_q_comp], dtype=np.int32) 151 num_elem, elem_qpts, num_q_comp, num_elem * elem_qpts * num_q_comp, strides)
|
| /libCEED/julia/LibCEED.jl/examples/ |
| H A D | ex3-volume.jl | 49 num_q_comp = 1 + div(dim*(dim + 1), 2) 55 num_q_comp, 83 (qdata, :out, EVAL_NONE, num_q_comp), # ← qdata output 116 qdata = CeedVector(ceed, num_elem*elem_qpts*num_q_comp) 128 (qdata, :in, EVAL_NONE, num_q_comp),
|
| /libCEED/interface/ |
| H A D | ceed-basis.c | 400 CeedInt dim, num_comp, num_q_comp, num_nodes, P_1d = 1, Q_1d = 1, total_num_points = 0; in CeedBasisApplyAtPointsCheckDims() local 407 CeedCall(CeedBasisGetNumQuadratureComponents(basis, eval_mode, &num_q_comp)); in CeedBasisApplyAtPointsCheckDims() 429 …s = ((t_mode == CEED_TRANSPOSE && (u_length >= (CeedSize)total_num_points * (CeedSize)num_q_comp || in CeedBasisApplyAtPointsCheckDims() 431 … (t_mode == CEED_NOTRANSPOSE && (v_length >= (CeedSize)total_num_points * (CeedSize)num_q_comp || in CeedBasisApplyAtPointsCheckDims() 435 … CEED_TRANSPOSE && (u_length >= (CeedSize)total_num_points * (CeedSize)num_q_comp * (CeedSize)dim … in CeedBasisApplyAtPointsCheckDims() 437 …EED_NOTRANSPOSE && (v_length >= (CeedSize)total_num_points * (CeedSize)num_q_comp * (CeedSize)dim … in CeedBasisApplyAtPointsCheckDims()
|