plotMPI()

Post date: 2017/12/24 5:01:36

examples++-hpddm/macro_ddm.idp

  • plotMPI(Th, u, legend, Pk, def, K, d, w)
    • 全 process から集めて可視化
      • K : data type
      • d : dim
      • w : wait
      • mesh Th
fespace Xh(Th, Pk);
Xh[int] def(u);
plot(uTab, wait = w, nbiso = 40, fill = 1, value = 1, dim = d, cmm = legend); 

examples++-mpi/MPIplot.idp

  • PLOTMPIALL(mesh,Pk, Th, u, plotparm)
    • 全 process から集めて可視化
mesh Thi=Th;
mesh[int] ath(mpisize);
fespace Xh(Thi,Pk);
Xh[int] uh(mpisize);
uh[0][]=u;
ath[0]=Th;
plot(uh,plotparm);