Recent content by pachomba
-
P
Fortran How to Retrieve the Value of MPI_TAG_UB in openmpi/2.1.1 Using Fortran?
Thank you Dr, I was able to compile the program with mpifort, now the program looks like this: PROGRAM test include 'mpif.h' LOGICAL FLAG INTEGER IERR INTEGER (KIND=MPI_ADDRESS_KIND) VALUE ! Upon successful return, VALUE == 7 (sign extended) CALL MPI_INIT(IERR) CALL...- pachomba
- Post #5
- Forum: Programming and Computer Science
-
P
Fortran How to Retrieve the Value of MPI_TAG_UB in openmpi/2.1.1 Using Fortran?
Thank you very much DrClaude, I tired that and I got this error: Error: Unexpected end of file in 'test.f90' Then I tried including "PROGRAM test" and "END PROGRAM test" at the beginning and end of the script, and I got this error: ~/tmp/cc3b6Lod.o: In function `MAIN__': test.f90:(.text+0x34)...- pachomba
- Post #3
- Forum: Programming and Computer Science
-
P
Fortran How to Retrieve the Value of MPI_TAG_UB in openmpi/2.1.1 Using Fortran?
Hello, I am trying to get the parameter MPI_TAG_UB for openmpi (I am using version 2.1.1). I know I need to use the routine MPI_COMM_GET_ATTR, but I have no idea how to do that, I never used fortran in my life. Following this link...- pachomba
- Thread
- Fortran
- Replies: 5
- Forum: Programming and Computer Science