MPICH2 version/Error


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers MPICH2 version/Error
# 1  
Old 02-06-2012
MPICH2 version/Error

Guys, I have two questions:

1- What command do i have to use to know the version of MPICH2?

2- I am running a parallel computation on quantum espresso using a SLURM interface (INTEL) and I am getting the following error:

however a colleague gave me another (rather more complicated) script to do the parallel run. Now, I get another error which is the following:

"/var/log/slurm/slurmd/job785314/slurm_script: line 95: cd: /storage/fis718/ananias/GB72scfPH.785314: Input/output error
/home_cluster/fis718/eliemouj/espresso-4.3.2/bin/./pw.x: symbol lookup error: /home_cluster/fis718/eliemouj/espresso-4.3.2/bin/./pw.x: undefined symbol: mpi_init_
/home_cluster/fis718/eliemouj/espresso-4.3.2/bin/./pw.x: symbol lookup error: /home_cluster/fis718/eliemouj/espresso-4.3.2/bin/./pw.x: undefined symbol: mpi_init_"

Can please anyone explain to me - clearly- why is this happening and how to solve it ? i am new in linux and it has been tedious trying to look at this error..Thanks.

Elie
# 2  
Old 03-27-2012
Can you try the outcome of the following?
Code:
/usr/local/bin/mpich2version

The rest of your post is incomplete and please also apply code tags.

Thank you.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need fix for rsync Error due to version mismatch

rsync --delay-updates -F --compress --archive --rsh='/usr/bin/ssh -t -a -x' /web/admin/Transfer/data/ user1@destserver1:/tmp/testf rsync version on sender server is:3.0.9 rsync version on sender server is:3.0.6 Linux sourceserver1 3.10.0-693.17.1.el7.x86_64 #1 SMP Sun Jan 14 10:36:03 EST... (1 Reply)
Discussion started by: mohtashims
1 Replies

2. Linux

Rocks cluster 6.1 and MPICH2 problem??????

Hey friends, I am trying to execute a simple hello world in mpi on MPICH2 on Rocks cluster. here is the c source code. #include <mpi.h> #include <stdio.h> int main( int argc, char ** argv ) { MPI_Init( NULL, NULL ); int world_size; MPI_Comm_size( MPI_COMM_WORLD, &world_size ); ... (4 Replies)
Discussion started by: gabam
4 Replies

3. Shell Programming and Scripting

Copy a file from directroy/ prior version to the directory/ new version

How to copy a file from directroy/ prior version to the directory/ new version automatically. (4 Replies)
Discussion started by: roy1912
4 Replies

4. UNIX for Dummies Questions & Answers

insmod error: disagrees about version of symbol module_layout

When I try to insert a simple kernel module I get the following error > insmod: error inserting 'test.ko': -1 Invalid module format > in dmesg I see: disagrees about version of symbol module_layout I have following kernel which I downloaded using apt-get: uname -r 2.6.32-24-generic ... (0 Replies)
Discussion started by: rupeshkp728
0 Replies

5. Solaris

Jumpstart Error: Unsupported version (3.0).

Hello, The OS version of the ZFS flar is Solaris 10 U9 . Here is the screen output from my attempted jumpstart: System identification is completed. System identification complete. Starting Solaris installation program... Searching for JumpStart directory... Using rules.ok from... (5 Replies)
Discussion started by: Siralos
5 Replies

6. UNIX for Dummies Questions & Answers

SDL error with the version

hi, i've just downloaded a test game to try compiling it with the gcc compiler in Solaris, the problem was that ./configure command return this error *** Could not run SDL test program, checking why... *** The test program compiled, but did not run. This usually means *** that the run-time linker... (0 Replies)
Discussion started by: freeware
0 Replies

7. Shell Programming and Scripting

Perl Script Syntax error in version 4

Hi , I use the following simple perl script to find the yesterday time perl -e ' use POSIX(strftime); print POSIX::strftime("%a %b %e %H:%M:%S %Y", localtime(time-86400*$ARGV))' 1 However in the perl version 4 , it gives me the following error : Do the perl version 4 does not support... (4 Replies)
Discussion started by: youareapkman
4 Replies

8. UNIX for Dummies Questions & Answers

Error: `mv olddir/ newdir/ ` never works on new version of bash?

Suppose you have a directory called "olddir" exists but no "newdir", you want to rename "olddir" to"newdir" In previous versions (at least in 2.05b.0) of bash, you can try mv olddir/ newdir/ OR mv olddir/ newdir But in new versions of bash, if you mv olddir/ newdir/ BASH panics: mv:... (5 Replies)
Discussion started by: meili100
5 Replies
Login or Register to Ask a Question