dp2d_cg_mpi.cc
来自「Flens库-一个在C++的矩阵运算库」· CC 代码 · 共 26 行
CC
26 行
#include <poisson_solver/flens_impl.h>#include <dirichlet_poisson.h>using namespace flens;using namespace std;typedef DirichletPoisson2D MatType;typedef DistributedGridVector2D VecType;intmain(int argc, char **argv){ MpiCart mpiCart(argc, argv); int l = 10; int rh = (1<<l); MatType A(rh); VecType f(mpiCart, rh), u(mpiCart, rh), solution(mpiCart, rh); problem2(f, u, solution); errorStat(0, A, f, u, solution); cout << "iterations = " << cg(A, u, f) << endl; errorStat(1, A, f, u, solution);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?