Lines Matching refs:mesh_coords
52 …artesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_coords);
53 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords);
166 CeedVector mesh_coords; in main() local
168 CeedVectorCreate(ceed, mesh_size, &mesh_coords); in main()
169 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main()
172 CeedScalar exact_volume = TransformMeshCoords(dim, mesh_size, mesh_coords); in main()
214 CeedOperatorApply(op_build, mesh_coords, q_data, CEED_REQUEST_IMMEDIATE); in main()
289 CeedVectorDestroy(&mesh_coords); in main()
375 …rtesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_coords) { in SetCartesianMeshCoords() argument
385 CeedVectorGetArrayWrite(mesh_coords, CEED_MEM_HOST, &coords); in SetCartesianMeshCoords()
402 CeedVectorRestoreArray(mesh_coords, &coords); in SetCartesianMeshCoords()
411 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords) { in TransformMeshCoords() argument
415 CeedVectorGetArray(mesh_coords, CEED_MEM_HOST, &coords); in TransformMeshCoords()
437 CeedVectorRestoreArray(mesh_coords, &coords); in TransformMeshCoords()