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
|
#include <iostream>
#include <vector>
#include <boost/scope_exit.hpp>
#include <boost/program_options.hpp>
#include <amgcl/backend/builtin.hpp>
#include <amgcl/adapter/crs_tuple.hpp>
#include <amgcl/mpi/util.hpp>
#include <amgcl/mpi/distributed_matrix.hpp>
#include <amgcl/profiler.hpp>
#include "domain_partition.hpp"
namespace amgcl {
profiler<> prof;
}
struct renumbering {
const domain_partition<3> ∂
const std::vector<ptrdiff_t> &dom;
renumbering(
const domain_partition<3> &p,
const std::vector<ptrdiff_t> &d
) : part(p), dom(d)
{}
ptrdiff_t operator()(ptrdiff_t i, ptrdiff_t j, ptrdiff_t k) const {
boost::array<ptrdiff_t, 3> p = {{i, j, k}};
std::pair<int,ptrdiff_t> v = part.index(p);
return dom[v.first] + v.second;
}
};
int main(int argc, char *argv[]) {
MPI_Init(&argc, &argv);
BOOST_SCOPE_EXIT(void) {
MPI_Finalize();
} BOOST_SCOPE_EXIT_END
amgcl::mpi::communicator world(MPI_COMM_WORLD);
if (world.rank == 0)
std::cout << "World size: " << world.size << std::endl;
// Read configuration from command line
ptrdiff_t n = 128;
namespace po = boost::program_options;
po::options_description desc("Options");
desc.add_options()
("help,h", "show help")
(
"size,n",
po::value<ptrdiff_t>(&n)->default_value(n),
"domain size"
)
;
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
if (vm.count("help")) {
std::cout << desc << std::endl;
return 0;
}
boost::array<ptrdiff_t, 3> lo = { {0, 0, 0 } };
boost::array<ptrdiff_t, 3> hi = { {n-1, n-1, n-1} };
using amgcl::prof;
prof.tic("partition");
domain_partition<3> part(lo, hi, world.size);
ptrdiff_t chunk = part.size( world.rank );
std::vector<ptrdiff_t> domain = world.exclusive_sum(chunk);
lo = part.domain(world.rank).min_corner();
hi = part.domain(world.rank).max_corner();
renumbering renum(part, domain);
prof.toc("partition");
prof.tic("assemble");
std::vector<ptrdiff_t> ptr;
std::vector<ptrdiff_t> col;
std::vector<double> val;
std::vector<double> rhs;
ptr.reserve(chunk + 1);
col.reserve(chunk * 7);
val.reserve(chunk * 7);
ptr.push_back(0);
const double h2i = (n - 1) * (n - 1);
for(ptrdiff_t k = lo[2]; k <= hi[2]; ++k) {
for(ptrdiff_t j = lo[1]; j <= hi[1]; ++j) {
for(ptrdiff_t i = lo[0]; i <= hi[0]; ++i) {
if (k > 0) {
col.push_back(renum(i,j,k-1));
val.push_back(-h2i);
}
if (j > 0) {
col.push_back(renum(i,j-1,k));
val.push_back(-h2i);
}
if (i > 0) {
col.push_back(renum(i-1,j,k));
val.push_back(-h2i);
}
col.push_back(renum(i,j,k));
val.push_back(6 * h2i);
if (i + 1 < n) {
col.push_back(renum(i+1,j,k));
val.push_back(-h2i);
}
if (j + 1 < n) {
col.push_back(renum(i,j+1,k));
val.push_back(-h2i);
}
if (k + 1 < n) {
col.push_back(renum(i,j,k+1));
val.push_back(-h2i);
}
ptr.push_back( col.size() );
}
}
}
prof.toc("assemble");
typedef amgcl::backend::builtin<double> Backend;
typedef amgcl::mpi::distributed_matrix<Backend> Matrix;
prof.tic("create distributed version");
Matrix A(world, std::tie(chunk, ptr, col, val), chunk);
prof.toc("create distributed version");
prof.tic("distributed product");
auto B = amgcl::mpi::product(A, A);
prof.toc("distributed product");
if (world.rank == 0) {
if (world.size == 1) {
typedef amgcl::backend::crs<double> matrix;
matrix A(std::tie(chunk, ptr, col, val));
prof.tic("openmp product");
auto B = amgcl::backend::product(A, A);
prof.toc("openmp product");
}
std::cout << prof << std::endl;
}
}
|