Lines Matching refs:mesh_coords
51 …artesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_coords);
52 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords);
156 CeedVector mesh_coords; in main() local
158 CeedVectorCreate(ceed, mesh_size, &mesh_coords); in main()
159 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main()
162 CeedScalar exact_volume = TransformMeshCoords(dim, mesh_size, mesh_coords); in main()
204 CeedOperatorApply(op_build, mesh_coords, q_data, CEED_REQUEST_IMMEDIATE); in main()
279 CeedVectorDestroy(&mesh_coords); in main()
365 …rtesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_coords) { in SetCartesianMeshCoords() argument
375 CeedVectorGetArrayWrite(mesh_coords, CEED_MEM_HOST, &coords); in SetCartesianMeshCoords()
392 CeedVectorRestoreArray(mesh_coords, &coords); in SetCartesianMeshCoords()
401 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords) { in TransformMeshCoords() argument
405 CeedVectorGetArray(mesh_coords, CEED_MEM_HOST, &coords); in TransformMeshCoords()
427 CeedVectorRestoreArray(mesh_coords, &coords); in TransformMeshCoords()