Lines Matching refs:num_comp
18 CeedInt p = 3, q = 3, dim = 2, num_comp = 2; in main() local
23 CeedScalar assembled_values[num_comp * num_comp * num_dofs * num_dofs]; in main()
24 CeedScalar assembled_true[num_comp * num_comp * num_dofs * num_dofs]; in main()
41 CeedVectorCreate(ceed, num_comp * num_dofs, &u); in main()
42 CeedVectorCreate(ceed, num_comp * num_dofs, &v); in main()
57 …CeedElemRestrictionCreate(ceed, num_elem, p * p, num_comp, num_dofs, num_comp * num_dofs, CEED_MEM… in main()
66 CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp, p, q, CEED_GAUSS, &basis_u); in main()
75 CeedQFunctionAddInput(qf_diff, "du", num_comp * dim, CEED_EVAL_GRAD); in main()
77 CeedQFunctionAddInput(qf_diff, "dummy u", num_comp, CEED_EVAL_INTERP); in main()
78 CeedQFunctionAddOutput(qf_diff, "dv", num_comp * dim, CEED_EVAL_GRAD); in main()
101 for (CeedInt k = 0; k < num_comp * num_comp * num_dofs * num_dofs; k++) { in main()
112 …for (CeedInt k = 0; k < num_entries; k++) assembled_values[rows[k] * num_comp * num_dofs + cols[k]… in main()
120 for (CeedInt comp_in = 0; comp_in < num_comp; comp_in++) { in main()
137 …for (CeedInt i = 0; i < num_dofs * num_comp; i++) assembled_true[i * num_dofs * num_comp + ind] = … in main()
144 for (CeedInt comp_in = 0; comp_in < num_comp; comp_in++) { in main()
146 for (CeedInt comp_out = 0; comp_out < num_comp; comp_out++) { in main()
147 …const CeedInt index = (node_out + comp_out * num_dofs) * num_comp + node_in + co… in main()