MPI-parallelization upto IO file

This commit is contained in:
Hamidreza Norouzi
2024-01-13 09:54:23 +03:30
parent 280f53a230
commit f5d8daa608
78 changed files with 1594 additions and 1503 deletions

View File

@ -23,7 +23,7 @@ Licence:
// initilized and finalize should be placed in onc scope
}
pFlow::output<< "\nFinalizing host/device execution space ...."<<pFlow::endl;
REPORT(0)<< "\nFinalizing host/device execution space ...."<<END_REPORT;
Kokkos::finalize();

View File

@ -22,7 +22,7 @@ Licence:
#ifndef __setProperty_hpp__
#define __setProperty_hpp__
REPORT(0)<<"\nReading proprties . . . "<<endREPORT;
REPORT(0)<<"\nReading proprties . . . "<<END_REPORT;
auto proprties = pFlow::property(Control.caseSetup().path()+pFlow::propertyFile__);

View File

@ -21,7 +21,7 @@ Licence:
#ifndef __setSurfaceGeometry_hpp__
#define __setSurfaceGeometry_hpp__
REPORT(0)<< "\nCreating surface geometry . . . "<<endREPORT;
REPORT(0)<< "\nCreating surface geometry . . . "<<END_REPORT;
auto surfGeometryPtr = pFlow::geometry::create(Control, proprties);
auto& surfGeometry = surfGeometryPtr();