ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
group
/
trunk
/
mdtools
/
mpi_implementation
/
mpiSimulation.cpp
Revision:
132
Committed:
Wed Oct 9 22:56:09 2002 UTC
(22 years, 6 months ago) by
chuckv
File size:
256 byte(s)
Log Message:
*** empty log message ***
File Contents
#
Content
1
#include <mpi.h>
2
#include <mpiSimulation.hpp>
3
4
mpiSimulation::mpiSimulation()
5
{
6
int mpi_error;
7
8
MPI::Init();
9
10
numberProcessors = MPI::Comm::Get_size();
11
myNode = MPI::Comm::Get_rank();
12
MPI::Get_processor_name(processorName,&processorNameLen);
13
}
14
15