Lines Matching refs:mesh_coords
51 …tCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[3], CeedInt mesh_degree, CeedVector mesh_coords);
52 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords);
162 CeedVector mesh_coords; in main() local
164 CeedVectorCreate(ceed, mesh_size, &mesh_coords); in main()
165 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main()
168 CeedScalar exact_surface_area = TransformMeshCoords(dim, mesh_size, mesh_coords); in main()
210 CeedOperatorApply(op_build, mesh_coords, q_data, CEED_REQUEST_IMMEDIATE); in main()
249 CeedVectorGetArrayRead(mesh_coords, CEED_MEM_HOST, &x_array); in main()
255 CeedVectorRestoreArrayRead(mesh_coords, &x_array); in main()
299 CeedVectorDestroy(&mesh_coords); in main()
389 …CartesianMeshCoords(CeedInt dim, CeedInt num_xyz[3], CeedInt mesh_degree, CeedVector mesh_coords) { in SetCartesianMeshCoords() argument
399 CeedVectorGetArrayWrite(mesh_coords, CEED_MEM_HOST, &coords); in SetCartesianMeshCoords()
416 CeedVectorRestoreArray(mesh_coords, &coords); in SetCartesianMeshCoords()
424 CeedScalar TransformMeshCoords(CeedInt dim, CeedInt mesh_size, CeedVector mesh_coords) { in TransformMeshCoords() argument
428 CeedVectorGetArray(mesh_coords, CEED_MEM_HOST, &coords); in TransformMeshCoords()
433 CeedVectorRestoreArray(mesh_coords, &coords); in TransformMeshCoords()