13#include "graphbuild.h"
17#include <basix/mdspan.hpp>
18#include <boost/unordered/unordered_flat_map.hpp>
22#include <dolfinx/common/MPI.h>
23#include <dolfinx/common/Timer.h>
24#include <dolfinx/common/sort.h>
25#include <dolfinx/graph/AdjacencyList.h>
26#include <dolfinx/graph/ordering.h>
27#include <dolfinx/graph/partition.h>
59void reorder_list(std::span<T> list, std::span<const std::int32_t> nodemap)
64 assert(list.size() % nodemap.size() == 0);
65 std::size_t degree = list.size() / nodemap.size();
66 const std::vector<T> orig(list.begin(), list.end());
67 for (std::size_t n = 0; n < nodemap.size(); ++n)
69 std::span links_old(orig.data() + n * degree, degree);
70 auto links_new = list.subspan(nodemap[n] * degree, degree);
71 std::ranges::copy(links_old, links_new.begin());
88template <std::
floating_po
int T>
89std::tuple<std::vector<std::int32_t>, std::vector<T>, std::vector<std::int32_t>>
91 std::span<const std::int32_t> facets)
93 auto topology =
mesh.topology();
95 const int tdim = topology->dim();
98 throw std::runtime_error(
99 "Cannot use mesh::locate_entities_boundary (boundary) for cells.");
103 mesh.topology_mutable()->create_connectivity(tdim - 1, 0);
104 mesh.topology_mutable()->create_connectivity(tdim - 1, dim);
105 std::vector<std::int32_t> vertices, entities;
107 auto f_to_v = topology->connectivity(tdim - 1, 0);
109 auto f_to_e = topology->connectivity(tdim - 1, dim);
111 for (
auto f : facets)
113 auto v = f_to_v->links(f);
114 vertices.insert(vertices.end(), v.begin(), v.end());
115 auto e = f_to_e->links(f);
116 entities.insert(entities.end(), e.begin(), e.end());
121 std::ranges::sort(vertices);
122 auto [unique_end, range_end] = std::ranges::unique(vertices);
123 vertices.erase(unique_end, range_end);
127 std::ranges::sort(entities);
128 auto [unique_end, range_end] = std::ranges::unique(entities);
129 entities.erase(unique_end, range_end);
134 auto x_dofmap =
mesh.geometry().dofmaps().front();
135 std::span<const T> x_nodes =
mesh.geometry().x();
138 mesh.topology_mutable()->create_connectivity(0, tdim);
139 mesh.topology_mutable()->create_connectivity(tdim, 0);
140 auto v_to_c = topology->connectivity(0, tdim);
142 auto c_to_v = topology->connectivity(tdim, 0);
144 std::vector<T> x_vertices(3 * vertices.size(), -1.0);
145 std::vector<std::int32_t> vertex_to_pos(v_to_c->num_nodes(), -1);
146 for (std::size_t i = 0; i < vertices.size(); ++i)
148 const std::int32_t v = vertices[i];
151 const std::int32_t c = v_to_c->links(v).front();
152 auto cell_vertices = c_to_v->links(c);
153 auto it = std::ranges::find(cell_vertices, v);
154 assert(it != cell_vertices.end());
155 const std::size_t local_pos
156 = std::ranges::distance(cell_vertices.begin(), it);
158 auto dofs = md::submdspan(x_dofmap, c, md::full_extent);
159 for (std::size_t j = 0; j < 3; ++j)
160 x_vertices[j * vertices.size() + i] = x_nodes[3 * dofs[local_pos] + j];
161 vertex_to_pos[v] = i;
164 return {std::move(entities), std::move(x_vertices), std::move(vertex_to_pos)};
237std::vector<std::int64_t>
239 std::optional<std::int32_t> max_facet_to_cell_links,
240 const std::vector<CellType>& celltypes,
241 const std::vector<fem::ElementDofLayout>& doflayouts,
242 const std::vector<std::vector<int>>& ghost_owners,
243 std::vector<std::vector<std::int64_t>>& cells,
244 std::vector<std::span<std::int64_t>>& cells_v,
245 std::vector<std::vector<std::int64_t>>& original_idx,
260 std::span<const std::int64_t> cells);
284template <std::
floating_po
int T>
285std::vector<T>
h(
const Mesh<T>&
mesh, std::span<const std::int32_t> entities,
288 if (entities.empty())
289 return std::vector<T>();
291 return std::vector<T>(entities.size(), 0);
294 const auto [vertex_xdofs, xdof_shape]
298 std::span<const T> x =
mesh.geometry().x();
301 auto delta_norm = [](
auto&& p0,
auto&& p1)
304 for (std::size_t i = 0; i < 3; ++i)
305 norm += (p0[i] - p1[i]) * (p0[i] - p1[i]);
306 return std::sqrt(norm);
311 std::vector<T>
h(entities.size(), 0);
312 for (std::size_t e = 0; e < entities.size(); ++e)
315 std::span<const std::int32_t> e_vertices(
316 vertex_xdofs.data() + e * xdof_shape[1], xdof_shape[1]);
319 for (std::size_t i = 0; i < e_vertices.size(); ++i)
321 std::span<const T, 3> p0(x.data() + 3 * e_vertices[i], 3);
322 for (std::size_t j = i + 1; j < e_vertices.size(); ++j)
324 std::span<const T, 3> p1(x.data() + 3 * e_vertices[j], 3);
325 h[e] = std::max(
h[e], delta_norm(p0, p1));
336template <std::
floating_po
int T>
338 std::span<const std::int32_t> entities)
340 if (entities.empty())
341 return std::vector<T>();
343 auto topology =
mesh.topology();
345 if (topology->cell_type() == CellType::prism and dim == 2)
347 throw std::runtime_error(
348 "Cell normal computation for prism cells not yet supported.");
351 const int gdim =
mesh.geometry().dim();
355 std::span<const T> x =
mesh.geometry().x();
356 const auto [geometry_entities, eshape]
359 std::vector<T> n(entities.size() * 3);
362 case CellType::interval:
365 throw std::invalid_argument(
"Interval cell normal undefined in 3D.");
366 for (std::size_t i = 0; i < entities.size(); ++i)
369 std::array vertices{geometry_entities[i * eshape[1]],
370 geometry_entities[i * eshape[1] + 1]};
371 std::array p = {std::span<const T, 3>(x.data() + 3 * vertices[0], 3),
372 std::span<const T, 3>(x.data() + 3 * vertices[1], 3)};
376 std::ranges::transform(p[1], p[0], t.begin(),
377 [](
auto x,
auto y) { return x - y; });
379 T norm = std::sqrt(t[0] * t[0] + t[1] * t[1]);
380 std::span<T, 3> ni(n.data() + 3 * i, 3);
381 ni[0] = -t[1] / norm;
387 case CellType::triangle:
389 for (std::size_t i = 0; i < entities.size(); ++i)
392 std::array vertices = {geometry_entities[i * eshape[1] + 0],
393 geometry_entities[i * eshape[1] + 1],
394 geometry_entities[i * eshape[1] + 2]};
395 std::array p = {std::span<const T, 3>(x.data() + 3 * vertices[0], 3),
396 std::span<const T, 3>(x.data() + 3 * vertices[1], 3),
397 std::span<const T, 3>(x.data() + 3 * vertices[2], 3)};
400 std::array<T, 3> dp1, dp2;
401 std::ranges::transform(p[1], p[0], dp1.begin(),
402 [](
auto x,
auto y) { return x - y; });
403 std::ranges::transform(p[2], p[0], dp2.begin(),
404 [](
auto x,
auto y) { return x - y; });
407 std::array<T, 3> ni = math::cross(dp1, dp2);
408 T norm = std::sqrt(ni[0] * ni[0] + ni[1] * ni[1] + ni[2] * ni[2]);
409 std::ranges::transform(ni, std::next(n.begin(), 3 * i),
410 [norm](
auto x) { return x / norm; });
415 case CellType::quadrilateral:
418 for (std::size_t i = 0; i < entities.size(); ++i)
421 std::array vertices = {geometry_entities[i * eshape[1] + 0],
422 geometry_entities[i * eshape[1] + 1],
423 geometry_entities[i * eshape[1] + 2]};
424 std::array p = {std::span<const T, 3>(x.data() + 3 * vertices[0], 3),
425 std::span<const T, 3>(x.data() + 3 * vertices[1], 3),
426 std::span<const T, 3>(x.data() + 3 * vertices[2], 3)};
429 std::array<T, 3> dp1, dp2;
430 std::ranges::transform(p[1], p[0], dp1.begin(),
431 [](
auto x,
auto y) { return x - y; });
432 std::ranges::transform(p[2], p[0], dp2.begin(),
433 [](
auto x,
auto y) { return x - y; });
436 std::array<T, 3> ni = math::cross(dp1, dp2);
437 T norm = std::sqrt(ni[0] * ni[0] + ni[1] * ni[1] + ni[2] * ni[2]);
438 std::ranges::transform(ni, std::next(n.begin(), 3 * i),
439 [norm](
auto x) { return x / norm; });
445 throw std::invalid_argument(
446 "cell_normal not supported for this cell type.");
453template <std::
floating_po
int T>
455 std::span<const std::int32_t> entities)
457 if (entities.empty())
458 return std::vector<T>();
460 std::span<const T> x =
mesh.geometry().x();
463 const auto [e_to_g, eshape]
466 std::vector<T> x_mid(entities.size() * 3, 0);
467 for (std::size_t e = 0; e < entities.size(); ++e)
469 std::span<T, 3> p(x_mid.data() + 3 * e, 3);
470 std::span<const std::int32_t> rows(e_to_g.data() + e * eshape[1],
472 for (
auto row : rows)
474 std::span<const T, 3> xg(x.data() + 3 * row, 3);
475 std::ranges::transform(p, xg, p.begin(),
476 [size = rows.size()](
auto x,
auto y)
477 { return x + y / size; });
490template <std::
floating_po
int T>
491std::pair<std::vector<T>, std::array<std::size_t, 2>>
494 auto topology =
mesh.topology();
496 const int tdim = topology->dim();
501 const std::int32_t num_vertices = topology->index_map(0)->size_local()
502 + topology->index_map(0)->num_ghosts();
504 std::vector<std::int32_t> vertex_to_node(num_vertices);
505 for (
int cell_type_idx = 0,
506 num_cell_types = topology->entity_types(tdim).size();
507 cell_type_idx < num_cell_types; ++cell_type_idx)
509 auto x_dofmap =
mesh.geometry().dofmaps().at(cell_type_idx);
510 auto c_to_v = topology->connectivity({tdim, cell_type_idx}, {0, 0});
512 for (
int c = 0; c < c_to_v->num_nodes(); ++c)
514 auto x_dofs = md::submdspan(x_dofmap, c, md::full_extent);
515 auto vertices = c_to_v->links(c);
516 for (std::size_t i = 0; i < vertices.size(); ++i)
517 vertex_to_node[vertices[i]] = x_dofs[i];
522 std::span<const T> x_nodes =
mesh.geometry().x();
523 std::vector<T> x_vertices(3 * vertex_to_node.size(), 0.0);
524 for (std::size_t i = 0; i < vertex_to_node.size(); ++i)
526 std::int32_t pos = 3 * vertex_to_node[i];
527 for (std::size_t j = 0; j < 3; ++j)
528 x_vertices[j * vertex_to_node.size() + i] = x_nodes[pos + j];
531 return {std::move(x_vertices), {3, vertex_to_node.size()}};
537template <
typename Fn,
typename T>
539 std::vector<std::int8_t>, Fn,
541 md::extents<std::size_t, 3, md::dynamic_extent>>>::value;
558template <std::
floating_po
int T, MarkerFn<T> U>
560 U marker,
int entity_type_idx)
564 = md::mdspan<const T, md::extents<std::size_t, 3, md::dynamic_extent>>;
567 const auto [xdata, xshape] = impl::compute_vertex_coords(
mesh);
569 cmdspan3x_t x(xdata.data(), xshape);
570 const std::vector<std::int8_t> marked = marker(x);
571 if (marked.size() != x.extent(1))
572 throw std::runtime_error(
"Length of array of markers is wrong.");
574 auto topology =
mesh.topology();
576 const int tdim = topology->dim();
578 mesh.topology_mutable()->create_entities(dim);
580 mesh.topology_mutable()->create_connectivity(dim, 0);
584 auto e_to_v = topology->connectivity({dim, entity_type_idx}, {0, 0});
586 std::vector<std::int32_t> entities;
587 for (
int e = 0; e < e_to_v->num_nodes(); ++e)
590 bool all_vertices_marked =
true;
591 for (std::int32_t v : e_to_v->links(e))
595 all_vertices_marked =
false;
600 if (all_vertices_marked)
601 entities.push_back(e);
620template <std::
floating_po
int T, MarkerFn<T> U>
624 const int num_entity_types =
mesh.topology()->entity_types(dim).size();
625 if (num_entity_types > 1)
627 throw std::runtime_error(
628 "Multiple entity types of this dimension. Specify entity type index");
656template <std::
floating_po
int T, MarkerFn<T> U>
661 auto topology =
mesh.topology();
663 int tdim = topology->dim();
666 throw std::runtime_error(
667 "Cannot use mesh::locate_entities_boundary (boundary) for cells.");
671 mesh.topology_mutable()->create_entities(tdim - 1);
672 mesh.topology_mutable()->create_connectivity(tdim - 1, tdim);
676 = md::mdspan<const T, md::extents<std::size_t, 3, md::dynamic_extent>>;
679 auto [facet_entities, xdata, vertex_to_pos]
680 = impl::compute_vertex_coords_boundary(
mesh, dim, boundary_facets);
681 cmdspan3x_t x(xdata.data(), 3, xdata.size() / 3);
682 std::vector<std::int8_t> marked = marker(x);
683 if (marked.size() != x.extent(1))
684 throw std::runtime_error(
"Length of array of markers is wrong.");
687 mesh.topology_mutable()->create_entities(dim);
688 auto e_to_v = topology->connectivity(dim, 0);
690 std::vector<std::int32_t> entities;
691 for (
auto e : facet_entities)
694 bool all_vertices_marked =
true;
695 for (
auto v : e_to_v->links(e))
697 const std::int32_t pos = vertex_to_pos[v];
700 all_vertices_marked =
false;
706 if (all_vertices_marked)
707 entities.push_back(e);
731template <std::
floating_po
int T>
732std::pair<std::vector<std::int32_t>, std::array<std::size_t, 2>>
734 std::span<const std::int32_t> entities,
735 bool permute =
false)
737 auto topology =
mesh.topology();
739 CellType cell_type = topology->cell_type();
740 if ((cell_type == CellType::prism or cell_type == CellType::pyramid)
743 throw std::runtime_error(
"mesh::entities_to_geometry for prism/pyramid "
744 "cell facets not yet supported.");
747 const int tdim = topology->dim();
749 auto xdofs =
geometry.dofmaps().front();
755 std::vector<std::int32_t> entity_xdofs;
756 entity_xdofs.reserve(entities.size() * num_entity_dofs);
757 std::array<std::size_t, 2> eshape{entities.size(), num_entity_dofs};
760 const std::vector<std::vector<std::vector<int>>>& closure_dofs_all
766 for (std::int32_t c : entities)
769 auto x_c = md::submdspan(xdofs, c, md::full_extent);
770 for (std::int32_t entity_dof : closure_dofs_all[tdim][0])
771 entity_xdofs.push_back(x_c[entity_dof]);
774 return {std::move(entity_xdofs), eshape};
779 auto e_to_c = topology->connectivity(dim, tdim);
782 throw std::runtime_error(std::format(
783 "Entity-to-cell connectivity has not been computed. Missing dims "
788 auto c_to_e = topology->connectivity(tdim, dim);
791 throw std::runtime_error(std::format(
792 "Cell-to-entity connectivity has not been computed. Missing dims "
798 std::span<const std::uint32_t> cell_info;
800 cell_info = std::span(
mesh.topology()->get_cell_permutation_info());
802 for (std::int32_t e : entities)
805 assert(!e_to_c->links(e).empty());
806 std::int32_t c = e_to_c->links(e).front();
809 std::span<const std::int32_t> cell_entities = c_to_e->links(c);
810 auto it = std::find(cell_entities.begin(), cell_entities.end(), e);
811 assert(it != cell_entities.end());
812 std::size_t local_entity = std::ranges::distance(cell_entities.begin(), it);
816 std::vector<std::int32_t> closure_dofs(closure_dofs_all[dim][local_entity]);
822 entity_type, local_entity);
826 auto x_c = md::submdspan(xdofs, c, md::full_extent);
827 for (std::int32_t entity_dof : closure_dofs)
828 entity_xdofs.push_back(x_c[entity_dof]);
831 return {std::move(entity_xdofs), eshape};
841std::vector<std::int32_t>
843 std::span<const std::int32_t> entities,
int d0,
872template <std::
floating_po
int T>
875 std::span<const int> num_vertices_per_cell,
876 const std::vector<std::span<const std::int64_t>>& cells,
877 MPI_Comm commg, std::span<const T> x,
int gdim)
881 std::vector<std::int64_t> nodes;
883 std::size_t size = 0;
884 for (std::span<const std::int64_t> c : cells)
887 for (std::span<const std::int64_t> c : cells)
888 nodes.insert(nodes.end(), c.begin(), c.end());
890 auto [unique_end, range_end] = std::ranges::unique(nodes);
891 nodes.erase(unique_end, range_end);
893 const std::vector<T> coords
901 boost::unordered_flat_map<std::int64_t, std::size_t> node_to_pos;
902 node_to_pos.reserve(nodes.size());
903 for (std::size_t i = 0; i < nodes.size(); ++i)
904 node_to_pos.emplace(nodes[i], i);
907 std::size_t num_cells = 0;
908 for (std::size_t i = 0; i < cells.size(); ++i)
909 num_cells += cells[i].size() / num_vertices_per_cell[i];
910 std::vector<double> centroid(gdim * num_cells, 0);
913 for (std::size_t i = 0; i < cells.size(); ++i)
915 const int nv = num_vertices_per_cell[i];
916 const double w = 1.0 / nv;
917 for (std::size_t c = 0; c < cells[i].size() / nv; ++c)
919 for (
int v = 0; v < nv; ++v)
921 auto it = node_to_pos.find(cells[i][nv * c + v]);
922 assert(it != node_to_pos.end());
923 std::size_t pos = it->second;
924 for (
int d = 0; d < gdim; ++d)
925 centroid[gdim * (c0 + c) + d] += w * coords[gdim * pos + d];
929 c0 += cells[i].size() / nv;
983template <std::
floating_po
int T>
984std::tuple<std::vector<std::vector<std::int64_t>>,
985 std::vector<std::vector<std::int64_t>>,
986 std::vector<std::vector<int>>>
988 const std::vector<std::span<const std::int64_t>>& cells,
989 const std::vector<CellType>& celltypes,
990 const std::vector<fem::ElementDofLayout>& doflayouts,
993 std::optional<std::int32_t> max_facet_to_cell_links,
994 int num_threads, MPI_Comm commg, std::span<const T> x,
995 std::array<std::size_t, 2> xshape)
997 const std::int32_t num_cell_types = cells.size();
998 std::vector<std::vector<std::int64_t>> cells1(num_cell_types);
999 std::vector<std::vector<std::int64_t>> original_idx1(num_cell_types);
1000 std::vector<std::vector<int>> ghost_owners(num_cell_types);
1003 spdlog::info(
"Using partitioner with cell data ({} cell types)",
1007 std::string error_msg;
1012 std::vector<double> centroid;
1013 const bool needs_centroids
1014 = std::holds_alternative<graph::geom_partition_fn>(partitioner.fn)
1015 or std::holds_alternative<graph::hybrid_partition_fn>(partitioner.fn);
1016 std::vector<std::vector<std::int64_t>> topology(num_cell_types);
1017 std::vector<std::span<const std::int64_t>> topology_view(num_cell_types);
1018 if (needs_centroids or commt != MPI_COMM_NULL)
1020 for (std::int32_t i = 0; i < num_cell_types; ++i)
1023 topology_view[i] = cells[i];
1027 topology_view[i] = topology[i];
1032 if (needs_centroids)
1034 std::vector<int> num_vertices_per_cell;
1035 std::ranges::transform(celltypes,
1036 std::back_inserter(num_vertices_per_cell),
1039 topology_view, commg, x, xshape[1]);
1042 if (std::holds_alternative<graph::geom_partition_fn>(partitioner.fn))
1047 const auto& p = std::get<graph::geom_partition_fn>(partitioner.fn);
1049 p(comm, size, std::span<const double>(centroid), xshape[1],
1050 partitioner.node_weights),
1053 catch (
const std::exception& e)
1056 error_msg = e.what();
1060 if (commt != MPI_COMM_NULL)
1071 max_facet_to_cell_links, num_threads);
1077 using P = std::decay_t<
decltype(p)>;
1078 if constexpr (std::is_same_v<P, graph::hybrid_partition_fn>)
1080 return p(commt, size, dual_graph(),
1081 std::span<const double>(centroid),
1082 partitioner.node_weights, std::nullopt, ghosting);
1084 else if constexpr (std::is_same_v<P, graph::partition_fn>)
1086 return p(commt, size, dual_graph(), partitioner.node_weights,
1087 std::nullopt, ghosting);
1094 catch (
const std::exception& e)
1104 error_msg = e.what();
1109 MPI_Allreduce(&failed, &any_failed, 1, MPI_INT, MPI_MAX, comm);
1112 throw std::runtime_error(
1113 failed ?
"Cell partitioning failed: " + error_msg
1114 :
"Cell partitioning failed on another rank.");
1117 std::int32_t cell_offset = 0;
1118 for (std::int32_t i = 0; i < num_cell_types; ++i)
1120 std::size_t num_cell_nodes = doflayouts[i].num_dofs();
1121 if (cells[i].size() % num_cell_nodes != 0)
1123 throw std::runtime_error(
"Cell array size is not a multiple of the "
1124 "number of nodes per cell.");
1126 std::size_t num_cells = cells[i].size() / num_cell_nodes;
1129 std::vector<std::int32_t> offsets_i(
1130 std::next(dest.
offsets().begin(), cell_offset),
1131 std::next(dest.
offsets().begin(), cell_offset + num_cells + 1));
1132 std::vector<std::int32_t> data_i(
1133 std::next(dest.
array().begin(), offsets_i.front()),
1134 std::next(dest.
array().begin(), offsets_i.back()));
1135 const std::int32_t offset_0 = offsets_i.front();
1136 std::ranges::transform(offsets_i, offsets_i.begin(),
1137 [offset_0](std::int32_t j)
1138 { return j - offset_0; });
1140 cell_offset += num_cells;
1144 std::vector<int> src_ranks;
1145 std::tie(cells1[i], src_ranks, original_idx1[i], ghost_owners[i])
1147 {num_cells, num_cell_nodes}, dest_i);
1148 spdlog::debug(
"Got {} cells from distribution", cells1[i].size());
1158 std::int64_t num_owned = 0;
1159 for (std::int32_t i = 0; i < num_cell_types; ++i)
1161 cells1[i] = std::vector<std::int64_t>(cells[i].begin(), cells[i].end());
1162 std::int32_t num_cell_nodes = doflayouts[i].num_dofs();
1163 if (cells1[i].size() % num_cell_nodes != 0)
1165 throw std::runtime_error(
"Cell array size is not a multiple of the "
1166 "number of nodes per cell.");
1168 original_idx1[i].resize(cells1[i].size() / num_cell_nodes);
1169 num_owned += original_idx1[i].size();
1177 std::int64_t global_offset = 0;
1178 MPI_Exscan(&num_owned, &global_offset, 1, MPI_INT64_T, MPI_SUM, comm);
1179 for (std::int32_t i = 0; i < num_cell_types; ++i)
1181 std::iota(original_idx1[i].begin(), original_idx1[i].end(),
1183 global_offset += original_idx1[i].size();
1187 return {std::move(cells1), std::move(original_idx1), std::move(ghost_owners)};
1245template <
typename U>
1247 MPI_Comm comm, MPI_Comm commt,
1248 std::vector<std::span<const std::int64_t>> cells,
1250 typename std::remove_reference_t<typename U::value_type>>>& elements,
1251 MPI_Comm commg,
const U& x, std::array<std::size_t, 2> xshape,
1253 std::optional<std::int32_t> max_facet_to_cell_links,
int num_threads,
1256 using T =
typename std::remove_reference_t<typename U::value_type>;
1258 if (cells.size() != elements.size())
1259 throw std::runtime_error(
"Number of cell arrays and elements must match.");
1260 std::vector<CellType> celltypes;
1261 std::ranges::transform(elements, std::back_inserter(celltypes),
1262 [](
auto& e) {
return e.cell_shape(); });
1263 std::vector<fem::ElementDofLayout> doflayouts;
1264 std::ranges::transform(elements, std::back_inserter(doflayouts),
1265 [](
auto& e) {
return e.create_dof_layout(); });
1276 const bool p1_geometry = std::ranges::all_of(
1277 std::views::iota(std::size_t(0), elements.size()),
1278 [&celltypes, &doflayouts](std::size_t i)
1279 { return is_vertex_dof_layout(celltypes[i], doflayouts[i]); });
1281 const std::int32_t num_cell_types = cells.size();
1286 const bool ghosting = (ghost_mode != GhostMode::none);
1287 auto [cells1, original_idx1, ghost_owners] = impl::partition_cells(
1288 comm, commt, cells, celltypes, doflayouts, p1_geometry, partitioner,
1289 ghosting, max_facet_to_cell_links, num_threads, commg,
1290 std::span<const T>(x), xshape);
1295 std::vector<std::vector<std::int64_t>> cells1_v_storage(num_cell_types);
1296 std::vector<std::span<std::int64_t>> cells1_v(num_cell_types);
1297 for (std::int32_t i = 0; i < num_cell_types; ++i)
1300 cells1_v[i] = cells1[i];
1305 cells1_v[i] = cells1_v_storage[i];
1308 spdlog::info(
"Extract basic topology: {}->{}", cells1[i].size(),
1309 cells1_v[i].size());
1315 const std::vector<std::int64_t> boundary_v = impl::reorder_cells(
1316 reorder_fn, max_facet_to_cell_links, celltypes, doflayouts, ghost_owners,
1317 cells1, cells1_v, original_idx1, num_threads);
1319 spdlog::debug(
"Got {} boundary vertices", boundary_v.size());
1322 std::vector<std::span<const std::int64_t>> cells1_v_span(cells1_v.begin(),
1324 std::vector<std::span<const std::int64_t>> original_idx1_span;
1325 std::ranges::transform(original_idx1, std::back_inserter(original_idx1_span),
1326 [](
auto& c) {
return std::span(c); });
1327 std::vector<std::span<const int>> ghost_owners_span;
1328 std::ranges::transform(ghost_owners, std::back_inserter(ghost_owners_span),
1329 [](
auto& c) {
return std::span(c); });
1334 auto [topology, vertex_index] = mesh::impl::create_topology(
1335 comm, celltypes, cells1_v_span, original_idx1_span, ghost_owners_span,
1336 boundary_v, num_threads);
1340 for (
int i = 0; i < num_cell_types; ++i)
1342 const auto& entity_dofs = doflayouts[i].entity_dofs_all();
1343 for (
int dim = 1; dim < topology.dim(); ++dim)
1347 = std::accumulate(entity_dofs[dim].begin(), entity_dofs[dim].end(), 0,
1348 [](
int c,
auto v) {
return c + v.size(); });
1350 spdlog::debug(
"Counting entity dofs, dim={}: {}", dim, dim_sum);
1352 topology.create_entities(dim);
1355 if (elements[i].needs_dof_permutations())
1356 topology.create_entity_permutations();
1361 std::vector<std::int64_t> nodes2_storage;
1362 std::span<const std::int64_t> nodes2;
1363 if (num_cell_types == 1)
1364 nodes2 = cells1.front();
1367 std::size_t size = 0;
1368 for (
const std::vector<std::int64_t>& c : cells1)
1370 nodes2_storage.reserve(size);
1371 for (
const std::vector<std::int64_t>& c : cells1)
1372 nodes2_storage.insert(nodes2_storage.end(), c.begin(), c.end());
1373 nodes2 = nodes2_storage;
1380 std::vector<std::int64_t> nodes1;
1382 nodes1 = std::move(vertex_index);
1385 nodes1.assign(nodes2.begin(), nodes2.end());
1387 auto [unique_end, range_end] = std::ranges::unique(nodes1);
1388 nodes1.erase(unique_end, range_end);
1396 =
create_geometry(topology, elements, nodes1, nodes2, coords, xshape[1]);
1398 return Mesh(comm, std::make_shared<Topology>(std::move(topology)),
1448template <
typename U>
1450 MPI_Comm comm, MPI_Comm commt, std::span<const std::int64_t> cells,
1452 typename std::remove_reference_t<typename U::value_type>>& element,
1453 MPI_Comm commg,
const U& x, std::array<std::size_t, 2> xshape,
1455 std::optional<std::int32_t> max_facet_to_cell_links,
int num_threads,
1458 return create_mesh(comm, commt, std::vector{cells}, std::vector{element},
1459 commg, x, xshape, partitioner, ghost_mode,
1460 max_facet_to_cell_links, num_threads, reorder_fn);
1483template <
typename U>
1484Mesh<typename std::remove_reference_t<typename U::value_type>>
1487 std::remove_reference_t<typename U::value_type>>& elements,
1488 const U& x, std::array<std::size_t, 2> xshape,
GhostMode ghost_mode,
1489 std::optional<std::int32_t> max_facet_to_cell_links = 2)
1497 return create_mesh(comm, comm, std::vector{cells}, std::vector{elements},
1498 comm, x, xshape, partitioner, ghost_mode,
1499 max_facet_to_cell_links, 1);
1515template <std::
floating_po
int T>
1516std::pair<Geometry<T>, std::vector<int32_t>>
1518 std::span<const std::int32_t> subentity_to_entity)
1525 =
geometry.cmaps().front().create_dof_layout();
1527 const std::vector<std::int32_t> x_indices
1530 std::vector<std::int32_t> sub_x_dofs = x_indices;
1531 std::ranges::sort(sub_x_dofs);
1532 auto [unique_end, range_end] = std::ranges::unique(sub_x_dofs);
1533 sub_x_dofs.erase(unique_end, range_end);
1536 auto x_index_map =
geometry.index_map();
1537 assert(x_index_map);
1539 std::shared_ptr<common::IndexMap> sub_x_dof_index_map;
1540 std::vector<std::int32_t> subx_to_x_dofmap;
1544 sub_x_dof_index_map = std::make_shared<common::IndexMap>(std::move(map));
1545 subx_to_x_dofmap = std::move(new_to_old);
1549 std::span<const T> x =
geometry.x();
1550 std::int32_t sub_num_x_dofs = subx_to_x_dofmap.size();
1551 std::vector<T> sub_x(3 * sub_num_x_dofs);
1552 for (std::int32_t i = 0; i < sub_num_x_dofs; ++i)
1554 std::copy_n(std::next(x.begin(), 3 * subx_to_x_dofmap[i]), 3,
1555 std::next(sub_x.begin(), 3 * i));
1559 std::vector<std::int32_t> x_to_subx_dof_map(
1560 x_index_map->size_local() + x_index_map->num_ghosts(), -1);
1561 for (std::size_t i = 0; i < subx_to_x_dofmap.size(); ++i)
1562 x_to_subx_dof_map[subx_to_x_dofmap[i]] = i;
1565 std::vector<std::int32_t> sub_x_dofmap;
1566 sub_x_dofmap.reserve(x_indices.size());
1567 std::ranges::transform(x_indices, std::back_inserter(sub_x_dofmap),
1568 [&x_to_subx_dof_map](
auto x_dof)
1570 assert(x_to_subx_dof_map[x_dof] != -1);
1571 return x_to_subx_dof_map[x_dof];
1581 = (sub_xcell == CellType::point) ? 0 :
geometry.cmaps().front().degree();
1583 geometry.cmaps().front().variant());
1586 const std::vector<std::int64_t>& igi =
geometry.input_global_indices();
1587 std::vector<std::int64_t> sub_igi;
1588 sub_igi.reserve(subx_to_x_dofmap.size());
1589 std::ranges::transform(subx_to_x_dofmap, std::back_inserter(sub_igi),
1590 [&igi](
auto sub_x_dof) {
return igi[sub_x_dof]; });
1594 sub_x_dof_index_map,
1595 std::vector<std::vector<std::int32_t>>{std::move(sub_x_dofmap)},
1596 {sub_cmap}, std::move(sub_x),
geometry.dim(), std::move(sub_igi)),
1597 std::move(subx_to_x_dofmap)};
1609template <std::
floating_po
int T>
1610std::tuple<Mesh<T>, EntityMap, EntityMap, std::vector<std::int32_t>>
1612 std::span<const std::int32_t> entities)
1615 mesh.topology_mutable()->create_connectivity(dim, 0);
1616 auto [topology, subentity_to_entity, subvertex_to_vertex]
1620 const int tdim =
mesh.topology()->dim();
1621 mesh.topology_mutable()->create_entities(dim);
1622 mesh.topology_mutable()->create_connectivity(dim, tdim);
1623 mesh.topology_mutable()->create_connectivity(tdim, dim);
1624 mesh.topology_mutable()->create_entity_permutations();
1629 =
Mesh(
mesh.comm(), std::make_shared<Topology>(std::move(topology)),
1632 subentity_to_entity);
1634 subvertex_to_vertex);
1635 return {std::move(submesh), std::move(entity_map), std::move(vertex_map),
1636 std::move(subx_to_x_dofmap)};
1646template <
typename T>
1649 std::shared_ptr<const dolfinx::mesh::Topology> submesh_topology,
1652 int tag_dim = tags.
dim();
1653 int submesh_tdim = submesh_topology->dim();
1655 if (tag_dim > submesh_tdim)
1657 throw std::runtime_error(
"Tag dimension must be less than or equal to "
1658 "submesh dimension");
1660 std::shared_ptr<const dolfinx::common::IndexMap> sub_cell_imap
1661 = submesh_topology->index_map(submesh_tdim);
1664 throw std::runtime_error(
1665 std::format(
"Entities of dimension {} does not exist in mesh topology.",
1670 std::int32_t submesh_num_cells
1671 = sub_cell_imap->size_local() + sub_cell_imap->num_ghosts();
1672 auto sub_cells = std::ranges::views::iota(0, submesh_num_cells);
1673 std::vector<std::int32_t> sub_cell_to_parent_entity
1678 auto parent_entity_imap = topology->index_map(submesh_tdim);
1679 if (!parent_entity_imap)
1681 throw std::runtime_error(std::format(
1682 "Entities of dimension {} does not exist in parent mesh topology.",
1685 std::size_t num_parent_entities
1686 = parent_entity_imap->size_local() + parent_entity_imap->num_ghosts();
1687 std::vector<std::int32_t> parent_entity_to_sub_cell(num_parent_entities, -1);
1688 for (std::size_t i = 0; i < sub_cell_to_parent_entity.size(); ++i)
1689 parent_entity_to_sub_cell[sub_cell_to_parent_entity[i]]
1690 =
static_cast<std::int32_t
>(i);
1693 std::vector<std::int32_t> sub_to_parent_vertex;
1695 auto sub_vertex_map = submesh_topology->index_map(0);
1696 std::int32_t num_sub_vertices
1697 = sub_vertex_map->size_local() + sub_vertex_map->num_ghosts();
1698 auto sub_vertices = std::ranges::views::iota(0, num_sub_vertices);
1700 sub_to_parent_vertex
1704 auto sub_e_to_v = submesh_topology->connectivity(tag_dim, 0);
1705 auto sub_c_to_e = submesh_topology->connectivity(submesh_tdim, tag_dim);
1706 auto sub_entity_imap = submesh_topology->index_map(tag_dim);
1707 auto e_to_v = topology->connectivity(tag_dim, 0);
1708 std::shared_ptr<const dolfinx::graph::AdjacencyList<std::int32_t>>
1709 e_to_sub_cell =
nullptr;
1710 if (tag_dim != submesh_tdim)
1712 e_to_sub_cell = topology->connectivity(tag_dim, submesh_tdim);
1715 throw std::runtime_error(
1716 std::format(
"Missing connectivity between {} and {} in parent mesh",
1717 tag_dim, submesh_tdim));
1723 throw std::runtime_error(std::format(
1724 "Missing connectivity between {} and {} in submesh", tag_dim, 0));
1728 throw std::runtime_error(
1729 std::format(
"Missing connectivity between {} and {} in submesh",
1730 submesh_tdim, tag_dim));
1732 if (!sub_entity_imap)
1734 throw std::runtime_error(std::format(
1735 "Entities of dimension {} does not exist in submesh topology.",
1740 throw std::runtime_error(
1741 std::format(
"Missing connectivity between {} and 0", tag_dim));
1745 std::size_t num_sub_entities
1746 = sub_entity_imap->size_local() + sub_entity_imap->num_ghosts();
1747 constexpr T max_val = std::numeric_limits<T>::max();
1748 std::vector<T> submesh_values(num_sub_entities, max_val);
1749 std::vector<std::int32_t> submesh_indices(num_sub_entities);
1750 std::iota(submesh_indices.begin(), submesh_indices.end(), 0);
1752 std::span<const std::int32_t> tagged_entities = tags.
indices();
1753 std::span<const T> tagged_values = tags.
values();
1756 for (std::size_t i = 0; i < tagged_entities.size(); ++i)
1758 auto find_and_map_sub_entity
1759 = [tag_dim, submesh_tdim, &e_to_v, &parent_entity_to_sub_cell,
1760 &sub_to_parent_vertex, &sub_e_to_v, &sub_c_to_e,
1761 &e_to_sub_cell](std::int32_t entity)
1765 if (tag_dim == submesh_tdim)
1766 return parent_entity_to_sub_cell[entity];
1770 auto entity_vertices = e_to_v->links(entity);
1771 auto parent_sub_cells = e_to_sub_cell->links(entity);
1774 | std::views::transform([&parent_entity_to_sub_cell](
auto c)
1775 {
return parent_entity_to_sub_cell[c]; })
1776 | std::views::filter([](
auto sub_cell) {
return sub_cell != -1; });
1777 for (
auto sub_cell : submesh_cells)
1779 for (
auto sub_entity : sub_c_to_e->links(sub_cell))
1782 auto parent_vertices
1783 = sub_e_to_v->links(sub_entity)
1784 | std::views::transform([&sub_to_parent_vertex](
auto v)
1785 {
return sub_to_parent_vertex[v]; });
1789 bool entity_matches = std::ranges::all_of(
1791 [&entity_vertices](
auto p_v)
1794 return std::ranges::find(entity_vertices, p_v)
1795 != std::ranges::end(entity_vertices);
1807 std::int32_t sub_entity = find_and_map_sub_entity(tagged_entities[i]);
1808 if (sub_entity != -1)
1809 submesh_values[sub_entity] = tagged_values[i];
1813 std::vector<std::int32_t> filtered_indices;
1814 std::vector<T> filtered_values;
1815 filtered_indices.reserve(num_sub_entities);
1816 filtered_values.reserve(num_sub_entities);
1817 for (std::size_t i = 0; i < submesh_values.size(); ++i)
1819 if (submesh_values[i] != max_val)
1821 filtered_indices.push_back(submesh_indices[i]);
1822 filtered_values.push_back(submesh_values[i]);
1825 filtered_indices.shrink_to_fit();
1826 filtered_values.shrink_to_fit();
1827 MeshTags<T> new_meshtag(submesh_topology, tag_dim, filtered_indices,
1828 filtered_values, tags.
name());
Definition CoordinateElement.h:38
ElementDofLayout create_dof_layout() const
Compute and return the dof layout.
Definition CoordinateElement.cpp:79
void permute_subentity_closure(std::span< std::int32_t > d, std::uint32_t cell_info, mesh::CellType entity_type, int entity_index) const
Given the closure DOFs of a cell sub-entity in reference ordering, this function computes the permut...
Definition CoordinateElement.cpp:68
Definition ElementDofLayout.h:31
const std::vector< int > & entity_closure_dofs(int dim, int entity_index) const
Definition ElementDofLayout.cpp:65
const std::vector< std::vector< std::vector< int > > > & entity_closure_dofs_all() const
Definition ElementDofLayout.cpp:77
This class provides a static adjacency list data structure.
Definition AdjacencyList.h:41
const std::vector< LinkData > & array() const
Return contiguous array of links for all nodes (const version).
Definition AdjacencyList.h:188
const std::vector< std::int32_t > & offsets() const
Offset for each node in array() (const version).
Definition AdjacencyList.h:194
A bidirectional map relating entities in one topology to another.
Definition EntityMap.h:22
std::vector< std::int32_t > sub_topology_to_topology(CellRange auto &&entities, bool inverse) const
Map entities between the sub-topology and the parent topology.
Definition EntityMap.h:104
Geometry stores the geometry imposed on a mesh.
Definition Geometry.h:37
A Mesh consists of a set of connected and numbered mesh topological entities, and geometry data.
Definition Mesh.h:23
std::shared_ptr< Topology > topology()
Get mesh topology.
Definition Mesh.h:69
Requirements on function for geometry marking.
Definition utils.h:538
Small, foundational mesh types (enums, etc.) with minimal dependencies.
void reorder_list(std::span< T > list, std::span< const std::int32_t > nodemap)
Re-order the nodes of a fixed-degree adjacency list.
Definition utils.h:59
std::tuple< std::vector< std::int32_t >, std::vector< T >, std::vector< std::int32_t > > compute_vertex_coords_boundary(const mesh::Mesh< T > &mesh, int dim, std::span< const std::int32_t > facets)
Compute the coordinates of 'vertices' for entities of a given dimension that are attached to specifie...
Definition utils.h:90
std::tuple< std::vector< std::vector< std::int64_t > >, std::vector< std::vector< std::int64_t > >, std::vector< std::vector< int > > > partition_cells(MPI_Comm comm, MPI_Comm commt, const std::vector< std::span< const std::int64_t > > &cells, const std::vector< CellType > &celltypes, const std::vector< fem::ElementDofLayout > &doflayouts, bool p1_geometry, const graph::Partitioner &partitioner, bool ghosting, std::optional< std::int32_t > max_facet_to_cell_links, int num_threads, MPI_Comm commg, std::span< const T > x, std::array< std::size_t, 2 > xshape)
Partition cells across ranks of comm, or, if partitioner does not hold a callable function,...
Definition utils.h:987
std::pair< std::vector< T >, std::array< std::size_t, 2 > > compute_vertex_coords(const mesh::Mesh< T > &mesh)
The coordinates for all 'vertices' in the mesh.
Definition utils.h:492
std::vector< double > compute_cell_centroids(MPI_Comm comm, std::span< const int > num_vertices_per_cell, const std::vector< std::span< const std::int64_t > > &cells, MPI_Comm commg, std::span< const T > x, int gdim)
Compute the centroid of each cell from its vertex positions.
Definition utils.h:874
int size(MPI_Comm comm)
Definition MPI.cpp:81
std::vector< std::ranges::range_value_t< U > > distribute_data(MPI_Comm comm0, std::span< const std::int64_t > indices, MPI_Comm comm1, const U &x, int shape1)
Distribute rows of a row-major array to the ranks that require them, via the post office pattern.
Definition MPI.h:734
std::pair< IndexMap, std::vector< std::int32_t > > create_sub_index_map(const IndexMap &imap, std::span< const std::int32_t > indices, IndexMapOrder order=IndexMapOrder::any, bool allow_owner_change=false)
Create a new index map from a subset of indices in an existing index map.
Definition IndexMap.cpp:825
@ any
Allow arbitrary ordering of ghost indices in sub-maps.
Definition IndexMap.h:27
Finite element method functionality.
Definition assemble_expression_impl.h:24
Geometry data structures and algorithms.
Definition BoundingBoxTree.h:24
std::tuple< graph::AdjacencyList< std::int64_t >, std::vector< int >, std::vector< std::int64_t >, std::vector< int > > distribute(MPI_Comm comm, const graph::AdjacencyList< std::int64_t > &list, const graph::AdjacencyList< std::int32_t > &destinations)
Distribute adjacency list nodes to destination ranks.
Definition partition.cpp:157
bool has_partitioner(const AnyPartitionFunction &partitioner)
Whether an AnyPartitionFunction holds a callable partitioner.
Definition partition.cpp:130
std::vector< std::int32_t > reorder_rcm(const graph::AdjacencyList< std::int32_t > &graph)
Re-order a graph using the Reverse Cuthill-McKee algorithm.
Definition ordering.cpp:149
AdjacencyList< typename std::decay_t< U >::value_type, V > regular_adjacency_list(U &&data, int degree)
Construct a constant degree (valency) adjacency list.
Definition AdjacencyList.h:262
std::function< graph::AdjacencyList< std::int32_t >( MPI_Comm, int, const AdjacencyList< std::int64_t > &, std::optional< std::span< const std::int32_t > >, std::optional< std::span< const std::int32_t > >, bool)> partition_fn
Signature of functions for computing the parallel partitioning of a distributed graph,...
Definition partition.h:38
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
graph::AdjacencyList< std::int64_t > build_dual_graph(MPI_Comm comm, std::span< const CellType > celltypes, const std::vector< std::span< const std::int64_t > > &cells, std::optional< std::int32_t > max_facet_to_cell_links, int num_threads=1)
Build distributed mesh dual graph (cell-cell connections via facets) from minimal mesh data.
Definition graphbuild.cpp:897
MeshTags< T > transfer_meshtags_to_submesh(const MeshTags< T > &tags, std::shared_ptr< const dolfinx::mesh::Topology > submesh_topology, const EntityMap &vertex_map, const EntityMap &cell_map)
Transfer a meshtags object from a parent to a submesh.
Definition utils.h:1647
std::vector< T > cell_normals(const Mesh< T > &mesh, int dim, std::span< const std::int32_t > entities)
Compute normal to given cell (viewed as embedded in 3D).
Definition utils.h:337
std::function< std::vector< std::int32_t >( const graph::AdjacencyList< std::int32_t > &)> CellReorderFunction
Function that reorders (locally) cells that are owned by this process. It takes the local mesh dual g...
Definition utils.h:202
std::tuple< Topology, std::vector< int32_t >, std::vector< int32_t > > create_subtopology(const Topology &topology, int dim, std::span< const std::int32_t > entities)
Create a topology for a subset of entities of a given topological dimension.
Definition Topology.cpp:1541
std::tuple< Mesh< T >, EntityMap, EntityMap, std::vector< std::int32_t > > create_submesh(const Mesh< T > &mesh, int dim, std::span< const std::int32_t > entities)
Create a new mesh consisting of a subset of entities in a mesh.
Definition utils.h:1611
bool is_vertex_dof_layout(CellType cell_type, const fem::ElementDofLayout &layout)
Check if extract_topology is the identity operation for a dof layout, i.e. the cell 'nodes' are exact...
Definition utils.cpp:237
std::vector< std::int32_t > exterior_facet_indices(const Topology &topology, int facet_type_idx)
Compute the indices of all exterior facets that are owned by the caller.
Definition utils.cpp:254
std::vector< std::int32_t > locate_entities_boundary(const Mesh< T > &mesh, int dim, U marker)
Compute indices of all mesh entities that are attached to an owned boundary facet and evaluate to tru...
Definition utils.h:657
CellType
Cell type identifier.
Definition cell_types.h:22
int num_cell_vertices(CellType type)
Number vertices for a cell type.
Definition cell_types.cpp:100
std::vector< T > h(const Mesh< T > &mesh, std::span< const std::int32_t > entities, int dim)
Compute greatest distance between any two vertices of the mesh entities (h).
Definition utils.h:285
std::pair< Geometry< T >, std::vector< int32_t > > create_subgeometry(const Mesh< T > &mesh, int dim, std::span< const std::int32_t > subentity_to_entity)
Create a sub-geometry from a mesh and a subset of mesh entities to be included.
Definition utils.h:1517
Geometry< typename std::remove_reference_t< typename U::value_type > > create_geometry(const Topology &topology, const std::vector< fem::CoordinateElement< std::remove_reference_t< typename U::value_type > > > &elements, std::span< const std::int64_t > nodes, std::span< const std::int64_t > xdofs, const U &x, int dim, const std::function< std::vector< int >(const graph::AdjacencyList< std::int32_t > &)> &reorder_fn=nullptr)
Build Geometry from input data.
Definition Geometry.h:235
std::pair< std::vector< std::int32_t >, std::array< std::size_t, 2 > > entities_to_geometry(const Mesh< T > &mesh, int dim, std::span< const std::int32_t > entities, bool permute=false)
Compute the geometry degrees of freedom associated with the closure of a given set of cell entities.
Definition utils.h:733
std::vector< std::int32_t > compute_incident_entities(const Topology &topology, std::span< const std::int32_t > entities, int d0, int d1)
Compute incident entities.
Definition utils.cpp:296
std::vector< std::int64_t > extract_topology(CellType cell_type, const fem::ElementDofLayout &layout, std::span< const std::int64_t > cells)
Extract topology from cell data, i.e. extract cell vertices.
Definition utils.cpp:208
std::vector< std::int32_t > locate_entities(const Mesh< T > &mesh, int dim, U marker, int entity_type_idx)
Compute indices of all mesh entities that evaluate to true for the provided geometric marking functio...
Definition utils.h:559
std::vector< T > compute_midpoints(const Mesh< T > &mesh, int dim, std::span< const std::int32_t > entities)
Compute the midpoints for mesh entities of a given dimension.
Definition utils.h:454
Mesh< typename std::remove_reference_t< typename U::value_type > > create_mesh(MPI_Comm comm, MPI_Comm commt, std::vector< std::span< const std::int64_t > > cells, const std::vector< fem::CoordinateElement< typename std::remove_reference_t< typename U::value_type > > > &elements, MPI_Comm commg, const U &x, std::array< std::size_t, 2 > xshape, const graph::Partitioner &partitioner, GhostMode ghost_mode, std::optional< std::int32_t > max_facet_to_cell_links, int num_threads, const CellReorderFunction &reorder_fn=graph::reorder_rcm)
Create a distributed mesh::Mesh from mesh data and using the provided graph partitioning function for...
Definition utils.h:1246
GhostMode
Enum for different partitioning ghost modes.
Definition types.h:19
CellType cell_entity_type(CellType type, int d, int index)
Return type of cell for entity of dimension d at given entity index.
Definition cell_types.h:111
constexpr void radix_sort(R &&range, P proj={})
Sort a range with radix sorting algorithm. The bucket size is determined by the number of bits to sor...
Definition sort.h:81
An AnyPartitionFunction together with the node weights it should be called with, if any.
Definition partition.h:156