Lines Matching refs:mesh_coords
50 …artesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_coords);
51 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords);
154 CeedVector mesh_coords; in main() local
156 CeedVectorCreate(ceed, mesh_size, &mesh_coords); in main()
157 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main()
160 CeedScalar exact_volume = TransformMeshCoords(dim, mesh_size, mesh_coords); in main()
194 CeedOperatorApply(op_build, mesh_coords, q_data, CEED_REQUEST_IMMEDIATE); in main()
268 CeedVectorDestroy(&mesh_coords); in main()
356 …rtesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_coords) { in SetCartesianMeshCoords() argument
366 CeedVectorGetArrayWrite(mesh_coords, CEED_MEM_HOST, &coords); in SetCartesianMeshCoords()
382 CeedVectorRestoreArray(mesh_coords, &coords); in SetCartesianMeshCoords()
391 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords) { in TransformMeshCoords() argument
395 CeedVectorGetArray(mesh_coords, CEED_MEM_HOST, &coords); in TransformMeshCoords()
416 CeedVectorRestoreArray(mesh_coords, &coords); in TransformMeshCoords()