1
vote
1answer
23 views

compilation error with MPI_type_create_resized in Fortran 90

I need to scatter a 2D array with non-contiguous blocks in a Fortran 90 code. The code need to call MPI_TYPE_CREATE_RESIZED to change the bounds and extend of the new vector type before calling ...
0
votes
1answer
63 views

Cause of “Segmentation Fault” in a program that depends on the number of MPI Isend/Irecv used?

I wish to discover the cause of an error in an MPI program. The program is a big while loop such that for each iteration, a set of message passing is done between each processor and its neighbors ...
0
votes
1answer
253 views

MPI undefined object references

I'm trying to install a program (the Parallel Ice Sheet Model, or PISM) which uses MPI. I keep running into the errors libpismutil.so: undefined reference to `ompi_mpi_cxx_op_intercept' ...
0
votes
0answers
30 views

In general, why would the timing of the same code with MPI change?

I have a serial code that I have parallelize it using MPI in FORTRAN. Without changing the test input, the timing change from one run to the other. Say run 1 t = 0.75sec run 2: t = 0.32 sec Again ...
0
votes
1answer
139 views

Stacked MPI derived data types in fortran

MPI2 allows us to create derived data types and send them by writing call mpi_type_create_indexed_block(size,1,dspl_send,rtype,DerType,ierr) call mpi_send(data,1,DerType,jRank,20,comm,ierr) By ...
0
votes
1answer
76 views

mpi alters a variable it shouldn't

I have some Fortran code that I'm parallelizing with MPI which is doing truly bizarre things. First, there's a variable nstartg that I broadcast from the boss process to all the workers: call ...
2
votes
3answers
261 views

Can MPI gather, reduce, send, or receive derived types in Fortran 90?

I want to copy a derived type xyzBuffer from processor 1 to xyz of processor 0. I attempted MPI_GATHER with: call MPI_GATHERV(xyzBuffer,1,inewtype,xyz,1, dispGather,inewtype,0,icomm,ierr) But ...
1
vote
1answer
187 views

seg fault in MPI with dynamic memory allocation

I'm parallelizing a Fortran 90 program using MPI and I get some truly bizarre behavior. I have an array ia of length nn+1, which I'm sending in chunks from process 0 to processes 1,...,ntasks-1. Each ...
1
vote
1answer
373 views

MPI Fortran code error on a single PC

Recently I was trying to compile and run my mpi code on a single machine (Ubuntu 12.04 - 64 bits core i7 2670 QM) I installed mpich2 version 1.2 using the following configuration: ./configure ...
0
votes
0answers
118 views

MPI and memory test

I have written a program in Fortran 90 and MPI. I tried to run this program on 2 different machines. In one works fine but on the other, Intel Xeon X5650, 12 cores (6x2), my program is stopped by ...
2
votes
2answers
176 views

send mpi message from a c++ code to fortran 90 code

I am try to see if I can send the contents of an array in a c++ code to a fortran 90 code. I'm using openmpi 1.4.3 built using intel 11.1.072 compilers. They are installed on Linux version ...
1
vote
2answers
147 views

Implementation details of MPI collective operations on a multi core machine

In MPI, each rank has a unique address space and communication between them happens via message passing. I want to know how MPI works in a multicore machine which has a shared memory. If the ranks are ...
1
vote
1answer
169 views

partition a 2D array row-wise and use allgather?

I have a loop that look like this: do j=1,100 do i=1,1000 combined_array(i,j)=combined_array(i,j-1) call foo(combined_array(i,j)) enddo enddo subroutine foo(x) x= ...
1
vote
2answers
245 views

partition a 2D array column-wise and use allgather

I have a fortran MPI code in which a compute intensive function is invoked on every element of a 2D array. I'm trying to split the tasks among the ranks. For example if there are 30 columns and 10 ...
0
votes
1answer
605 views

Segmentation fault during MPI_FINALIZE() in Fortran

I am getting a segmentation fault during a call to MPI_FINALIZE() in a Fortran 90 program. While the code is quite extensive, I will post the pseudocode and see if it raises any flags. I have a hunch ...
4
votes
1answer
156 views

Asynchronous MPI with SysV shared memory

We have a large Fortran/MPI code-base which makes use of system-V shared memory segments on a node. We run on fat nodes with 32 processors, but only 2 or 4 NICs, and relatively little memory per CPU; ...
1
vote
1answer
255 views

Random failure of MPI FORTRAN code

My main FORTRAN MPI code reaches a point where all processes call a script. The codelooks something like write(syscommand,'(a131xi3)') './vscript.csh' my_mpi_proc_num rc=system(syscommand) Now, ...
0
votes
2answers
253 views

mpirun is not working with two nodes

I am working in a cluster where each node has 16 processors. My version of Open MPI is 1.5.3. I have written the following simple code in fortran: program MAIN implicit none include 'mpif.h' ...
0
votes
2answers
201 views

MPI_TYPE_CONTIGUOUS doesn't work correctly with custom type that contains a real(8)

I have a weird problem with defining a mpi_type_contiguous and using mpi_gatherv later on. The type is defined as: type glist !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !uncomment line below for int ...
-1
votes
1answer
1k views

How to use MPI (openMPI or MPICH2) with minGW - GNU gfortran compiler

I am using the eclipse PTP IDE to develop MPI code, I want to be able to compile MPI on windows, it seems to provide c++ and c binding, but I am writing using fortran and gfortran compiler and would ...
0
votes
2answers
527 views

MPI struct datatype with an array

I would like to easily send an someObject in one MPI_SEND/RECV call in mpi. type someObject integer :: foo real :: bar,baz double precision :: a,b,c double precision, ...
1
vote
1answer
779 views

using MPI_Gatherv for Fortran

This question follows an existing thread on MPI_type_create_subarray and MPI_Gather. My aim is to gather subarrays of a bigger array from all the slave processes (4 in number) into a larger array on a ...
0
votes
1answer
646 views

To use MPI_type_contiguous and MPI_Type_CREATE_Subarray in FORTRAN 90 structure

Hi I am trying to use fortran structure like this type some u ! actual code will have 17 such scalars end type some TYPE(some),ALLOCATABLE,DIMENSION(:) :: metvars,newmetvars ...
1
vote
2answers
155 views

catching a deadlock in a simple odd-even sending

I'm trying to solve a simple problem with MPI, my implementation is MPICH2 and my code is in fortran. I have used the blocking send and receive, the idea is so simple but when I run it it crashes!!! I ...
0
votes
2answers
791 views

MPI_COMM_WORLD handle loses value in a subroutine

my program is as follows: module x use mpi !x includes mpi module implicit none ... contains subroutine do_something_with_mpicommworld !use mpi !uncommenting this makes a ...
2
votes
2answers
867 views

MPI_SCATTER Fortran Matrices by Rows

What is the best way to scatter a Fortran 90 matrix by its rows rather than columns? That is, let's say I have a matrix a(4,50) and I want to MPI_SCATTER it onto two processes where each part is ...
1
vote
2answers
888 views

fortran 90 user defined type, passing by value?

I have an issue in Fortran 90. I have a user-defined type, and when I call one of the MPI subroutines the data looks to be passed by value (not address, as I thought it should). The output arguments ...