1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
// Copyright (C) 2007-2021 Garth N. Wells
//
// This file is part of DOLFINx (https://www.fenicsproject.org)
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include "SparsityPattern.h"
#include <algorithm>
#include <dolfinx/common/IndexMap.h>
#include <dolfinx/common/MPI.h>
#include <dolfinx/common/Timer.h>
#include <dolfinx/common/log.h>
#include <map>
using namespace dolfinx;
using namespace dolfinx::la;
//-----------------------------------------------------------------------------
SparsityPattern::SparsityPattern(
MPI_Comm comm, std::array<std::shared_ptr<const common::IndexMap>, 2> maps,
std::array<int, 2> bs)
: _comm(comm), _index_maps(maps), _bs(bs),
_row_cache(maps[0]->size_local() + maps[0]->num_ghosts())
{
assert(maps[0]);
}
//-----------------------------------------------------------------------------
SparsityPattern::SparsityPattern(
MPI_Comm comm,
const std::vector<std::vector<const SparsityPattern*>>& patterns,
const std::array<std::vector<std::pair<
std::reference_wrapper<const common::IndexMap>, int>>,
2>& maps,
const std::array<std::vector<int>, 2>& bs)
: _comm(comm), _bs({1, 1})
{
// FIXME: - Add range/bound checks for each block
// - Check for compatible block sizes for each block
const auto [rank_offset0, local_offset0, ghosts_new0, owners0]
= common::stack_index_maps(maps[0]);
const auto [rank_offset1, local_offset1, ghosts_new1, owners1]
= common::stack_index_maps(maps[1]);
std::vector<std::int64_t> ghosts0, ghosts1;
std::vector<std::int32_t> ghost_offsets0(1, 0);
std::vector<std::int32_t> ghost_offsets1(1, 0);
for (const std::vector<std::int64_t>& ghosts : ghosts_new0)
{
ghost_offsets0.push_back(ghost_offsets0.back() + ghosts.size());
ghosts0.insert(ghosts0.end(), ghosts.begin(), ghosts.end());
}
for (const std::vector<std::int64_t>& ghosts : ghosts_new1)
{
ghost_offsets1.push_back(ghost_offsets1.back() + ghosts.size());
ghosts1.insert(ghosts1.end(), ghosts.begin(), ghosts.end());
}
std::vector<int> ghost_owners0, ghost_owners1;
for (const std::vector<int>& owners : owners0)
ghost_owners0.insert(ghost_owners0.end(), owners.begin(), owners.end());
for (const std::vector<int>& owners : owners1)
ghost_owners1.insert(ghost_owners1.end(), owners.begin(), owners.end());
// Create new IndexMaps
_index_maps[0] = std::make_shared<common::IndexMap>(
comm, local_offset0.back(), ghosts0, ghost_owners0);
_index_maps[1] = std::make_shared<common::IndexMap>(
comm, local_offset1.back(), ghosts1, ghost_owners1);
_row_cache.resize(_index_maps[0]->size_local()
+ _index_maps[0]->num_ghosts());
const std::int32_t num_rows_local_new = _index_maps[0]->size_local();
// Iterate over block rows
for (std::size_t row = 0; row < patterns.size(); ++row)
{
const common::IndexMap& map_row = maps[0][row].first;
const std::int32_t num_rows_local = map_row.size_local();
const std::int32_t num_ghost_rows_local = map_row.num_ghosts();
// Iterate over block columns of current row (block)
for (std::size_t col = 0; col < patterns[row].size(); ++col)
{
const common::IndexMap& map_col = maps[1][col].first;
const std::int32_t num_cols_local = map_col.size_local();
// Get pattern for this block
const SparsityPattern* p = patterns[row][col];
if (!p)
continue;
if (!_offsets.empty())
{
throw std::runtime_error("Sub-sparsity pattern has been finalised. "
"Cannot compute stacked pattern.");
}
const int bs_dof0 = bs[0][row];
const int bs_dof1 = bs[1][col];
// Iterate over owned rows cache
for (std::int32_t i = 0; i < num_rows_local; ++i)
{
for (std::int32_t c_old : p->_row_cache[i])
{
const std::int32_t r_new = bs_dof0 * i + local_offset0[row];
const std::int32_t c_new = (c_old < num_cols_local)
? bs_dof1 * c_old + local_offset1[col]
: bs_dof1 * (c_old - num_cols_local)
+ local_offset1.back()
+ ghost_offsets1[col];
for (int k0 = 0; k0 < bs_dof0; ++k0)
{
for (int k1 = 0; k1 < bs_dof1; ++k1)
_row_cache[r_new + k0].push_back(c_new + k1);
}
}
}
// Iterate over unowned rows cache
for (std::int32_t i = 0; i < num_ghost_rows_local; ++i)
{
for (std::int32_t c_old : p->_row_cache[i + num_rows_local])
{
const std::int32_t r_new = bs_dof0 * i + ghost_offsets0[row];
const std::int32_t c_new = (c_old < num_cols_local)
? bs_dof1 * c_old + local_offset1[col]
: bs_dof1 * (c_old - num_cols_local)
+ local_offset1.back()
+ ghost_offsets1[col];
for (int k0 = 0; k0 < bs_dof0; ++k0)
{
for (int k1 = 0; k1 < bs_dof1; ++k1)
_row_cache[num_rows_local_new + r_new + k0].push_back(c_new + k1);
}
}
}
}
}
}
//-----------------------------------------------------------------------------
void SparsityPattern::insert(std::int32_t row, std::int32_t col)
{
if (!_offsets.empty())
{
throw std::runtime_error(
"Cannot insert into sparsity pattern. It has already been finalized");
}
assert(_index_maps[0]);
const std::int32_t max_row
= _index_maps[0]->size_local() + _index_maps[0]->num_ghosts() - 1;
if (row > max_row or row < 0)
{
throw std::runtime_error(
"Cannot insert rows that do not exist in the IndexMap.");
}
_row_cache[row].push_back(col);
}
//-----------------------------------------------------------------------------
void SparsityPattern::insert(std::span<const std::int32_t> rows,
std::span<const std::int32_t> cols)
{
if (!_offsets.empty())
{
throw std::runtime_error(
"Cannot insert into sparsity pattern. It has already been finalized");
}
assert(_index_maps[0]);
const std::int32_t max_row
= _index_maps[0]->size_local() + _index_maps[0]->num_ghosts() - 1;
for (std::int32_t row : rows)
{
if (row > max_row or row < 0)
{
throw std::runtime_error(
"Cannot insert rows that do not exist in the IndexMap.");
}
_row_cache[row].insert(_row_cache[row].end(), cols.begin(), cols.end());
}
}
//-----------------------------------------------------------------------------
void SparsityPattern::insert_diagonal(std::span<const std::int32_t> rows)
{
if (!_offsets.empty())
{
throw std::runtime_error(
"Cannot insert into sparsity pattern. It has already been finalized");
}
assert(_index_maps[0]);
const std::int32_t max_row
= _index_maps[0]->size_local() + _index_maps[0]->num_ghosts() - 1;
for (std::int32_t row : rows)
{
if (row > max_row or row < 0)
{
throw std::runtime_error(
"Cannot insert rows that do not exist in the IndexMap.");
}
_row_cache[row].push_back(row);
}
}
//-----------------------------------------------------------------------------
std::shared_ptr<const common::IndexMap>
SparsityPattern::index_map(int dim) const
{
return _index_maps.at(dim);
}
//-----------------------------------------------------------------------------
std::vector<std::int64_t> SparsityPattern::column_indices() const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not been finalised.");
std::array range = _index_maps[1]->local_range();
const std::int32_t local_size = range[1] - range[0];
const std::int32_t num_ghosts = _col_ghosts.size();
std::vector<std::int64_t> global(local_size + num_ghosts);
std::iota(global.begin(), std::next(global.begin(), local_size), range[0]);
std::ranges::copy(_col_ghosts, global.begin() + local_size);
return global;
}
//-----------------------------------------------------------------------------
common::IndexMap SparsityPattern::column_index_map() const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not been finalised.");
std::array range = _index_maps[1]->local_range();
const std::int32_t local_size = range[1] - range[0];
return common::IndexMap(_comm.comm(), local_size, _col_ghosts,
_col_ghost_owners);
}
//-----------------------------------------------------------------------------
int SparsityPattern::block_size(int dim) const { return _bs[dim]; }
//-----------------------------------------------------------------------------
void SparsityPattern::finalize()
{
if (!_offsets.empty())
throw std::runtime_error("Sparsity pattern has already been finalised.");
common::Timer t0("SparsityPattern::finalize");
assert(_index_maps[0]);
const std::int32_t local_size0 = _index_maps[0]->size_local();
const std::array local_range0 = _index_maps[0]->local_range();
std::span ghosts0 = _index_maps[0]->ghosts();
std::span owners0 = _index_maps[0]->owners();
std::span src0 = _index_maps[0]->src();
assert(_index_maps[1]);
const std::int32_t local_size1 = _index_maps[1]->size_local();
const std::array local_range1 = _index_maps[1]->local_range();
_col_ghosts.assign(_index_maps[1]->ghosts().begin(),
_index_maps[1]->ghosts().end());
_col_ghost_owners.assign(_index_maps[1]->owners().begin(),
_index_maps[1]->owners().end());
// Compute size of data to send to each process
std::vector<int> send_sizes(src0.size(), 0);
for (std::size_t i = 0; i < owners0.size(); ++i)
{
auto it = std::ranges::lower_bound(src0, owners0[i]);
assert(it != src0.end() and *it == owners0[i]);
const int neighbour_rank = std::distance(src0.begin(), it);
send_sizes[neighbour_rank] += 3 * _row_cache[i + local_size0].size();
}
// Compute send displacements
std::vector<int> send_disp(send_sizes.size() + 1, 0);
std::partial_sum(send_sizes.begin(), send_sizes.end(),
std::next(send_disp.begin(), 1));
// For each ghost row, pack and send (global row, global col,
// col_owner) triplets to send to neighborhood
std::vector<int> insert_pos(send_disp);
std::vector<std::int64_t> ghost_data(send_disp.back());
const int rank = dolfinx::MPI::rank(_comm.comm());
for (std::size_t i = 0; i < owners0.size(); ++i)
{
auto it = std::ranges::lower_bound(src0, owners0[i]);
assert(it != src0.end() and *it == owners0[i]);
const int neighbour_rank = std::distance(src0.begin(), it);
for (std::int32_t col_local : _row_cache[i + local_size0])
{
// Get index in send buffer
const std::int32_t pos = insert_pos[neighbour_rank];
// Pack send data
ghost_data[pos] = ghosts0[i];
if (col_local < local_size1)
{
ghost_data[pos + 1] = col_local + local_range1[0];
ghost_data[pos + 2] = rank;
}
else
{
ghost_data[pos + 1] = _col_ghosts[col_local - local_size1];
ghost_data[pos + 2] = _col_ghost_owners[col_local - local_size1];
}
insert_pos[neighbour_rank] += 3;
}
}
// Exchange data between processes
std::vector<std::int64_t> ghost_data_in;
{
MPI_Comm comm;
std::span dest0 = _index_maps[0]->dest();
MPI_Dist_graph_create_adjacent(
_index_maps[0]->comm(), dest0.size(), dest0.data(), MPI_UNWEIGHTED,
src0.size(), src0.data(), MPI_UNWEIGHTED, MPI_INFO_NULL, false, &comm);
std::vector<int> recv_sizes(dest0.size());
send_sizes.reserve(1);
recv_sizes.reserve(1);
MPI_Neighbor_alltoall(send_sizes.data(), 1, MPI_INT, recv_sizes.data(), 1,
MPI_INT, comm);
// Build recv displacements
std::vector<int> recv_disp{0};
std::partial_sum(recv_sizes.begin(), recv_sizes.end(),
std::back_inserter(recv_disp));
ghost_data_in.resize(recv_disp.back());
MPI_Neighbor_alltoallv(ghost_data.data(), send_sizes.data(),
send_disp.data(), MPI_INT64_T, ghost_data_in.data(),
recv_sizes.data(), recv_disp.data(), MPI_INT64_T,
comm);
MPI_Comm_free(&comm);
}
// Global to local map for ghost column indices
std::map<std::int64_t, std::int32_t> global_to_local;
std::int32_t local_i = local_size1;
for (std::int64_t global_i : _col_ghosts)
global_to_local.insert({global_i, local_i++});
// Add data received from the neighborhood
for (std::size_t i = 0; i < ghost_data_in.size(); i += 3)
{
const std::int32_t row_local = ghost_data_in[i] - local_range0[0];
const std::int64_t col = ghost_data_in[i + 1];
const int owner = ghost_data_in[i + 2];
if (col >= local_range1[0] and col < local_range1[1])
{
// Convert to local column index
const std::int32_t J = col - local_range1[0];
_row_cache[row_local].push_back(J);
}
else
{
// Column index may not exist in column indexmap
auto it = global_to_local.insert({col, local_i});
if (it.second)
{
_col_ghosts.push_back(col);
_col_ghost_owners.push_back(owner);
++local_i;
}
const std::int32_t col_local = it.first->second;
_row_cache[row_local].push_back(col_local);
}
}
// Sort and remove duplicate column indices in each row
std::vector<std::int32_t> adj_counts(local_size0 + owners0.size(), 0);
_off_diagonal_offsets.resize(local_size0 + owners0.size());
for (std::size_t i = 0; i < local_size0 + owners0.size(); ++i)
{
std::vector<std::int32_t>& row = _row_cache[i];
std::ranges::sort(row);
auto it_end = std::ranges::unique(row).begin();
// Find position of first "off-diagonal" column
_off_diagonal_offsets[i] = std::distance(
row.begin(), std::lower_bound(row.begin(), it_end, local_size1));
_edges.insert(_edges.end(), row.begin(), it_end);
adj_counts[i] += std::distance(row.begin(), it_end);
}
// Clear cache
std::vector<std::vector<std::int32_t>>().swap(_row_cache);
// Compute offsets for adjacency list
_offsets.resize(local_size0 + owners0.size() + 1, 0);
std::partial_sum(adj_counts.begin(), adj_counts.end(), _offsets.begin() + 1);
_edges.shrink_to_fit();
// Column count increased due to received rows from other processes
spdlog::info("Column ghost size increased from {} to {}",
_index_maps[1]->ghosts().size(), _col_ghosts.size());
}
//-----------------------------------------------------------------------------
std::int64_t SparsityPattern::num_nonzeros() const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not be finalized.");
return _edges.size();
}
//-----------------------------------------------------------------------------
std::int32_t SparsityPattern::nnz_diag(std::int32_t row) const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not be finalized.");
return _off_diagonal_offsets[row];
}
//-----------------------------------------------------------------------------
std::int32_t SparsityPattern::nnz_off_diag(std::int32_t row) const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not be finalized.");
return (_offsets[row + 1] - _offsets[row]) - _off_diagonal_offsets[row];
}
//-----------------------------------------------------------------------------
std::pair<std::span<const std::int32_t>, std::span<const std::int64_t>>
SparsityPattern::graph() const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not been finalized.");
return {_edges, _offsets};
}
//-----------------------------------------------------------------------------
std::span<const std::int32_t> SparsityPattern::off_diagonal_offsets() const
{
if (_offsets.empty())
throw std::runtime_error("Sparsity pattern has not be finalized.");
return _off_diagonal_offsets;
}
//-----------------------------------------------------------------------------
MPI_Comm SparsityPattern::comm() const { return _comm.comm(); }
//-----------------------------------------------------------------------------
|