Re: [OMPI users] Unexpected warning/return from mpirun with minimal MPI program
Hi Ralph, thank you for answering. So for clarity, - the return code is expected and there is a bug in the man page, - the warning is supposed to be printed in the event that a program exits with a non-zero exit status even if it calls MPI_Finalize before it does so. Please correct me if either of those aren't really the case. When running the code with an older version of OpenMPI (1.4.3) there is no warning. If it is relevant there is no warning when running it with MPICH2. Is the warning an intended change from 1.4.x to 1.5.x or is it likely that my installation of OpenMPI is configured incorrectly? On Mon, Feb 20, 2012 at 4:53 AM, Ralph Castain wrote: > If your program returns an error status (i.e., a non-zero exit status), > then mpirun passes that along to you so any script you are using can know > that something failed. > > > On Feb 19, 2012, at 7:41 PM, Truls Edvard Stokke wrote: > > > Hi, > > > > In running this minimal program (test.c) > > > > #include > > #include > > > > int main (int argc, char ** argv) { > > MPI_Init(&argc, &argv); > > MPI_Finalize(); > > > > exit(EXIT_FAILURE); > > } > > > > compiled and ran with the commands > > > > mpicc test.c > > mpirun -n 1 a.out > > > > I get the output > > > > > -- > > mpirun noticed that the job aborted, but has no info as to the process > > that caused that situation. > > > -- > > > > The return value of mpirun is 1 (presumably the value of EXIT_FAILURE) > instead of the expected 0. > > Citing the manual page of mpirun, "mpirun returns 0 if all ranks started > by mpirun exit after calling MPI_FINALIZE." which should be the case in the > program. > > > > If EXIT_FAILURE is changed to EXIT_SUCCESS there is no output and mpirun > returns 0 as expected. > > > > My OpenMPI version is 1.5.4, the code and output from ompi_info --all is > attached. > > > > If it is relevant my OS is Fedora 16 and the packages installed are > openmpi.i686 and openmpi-devel.i686, the code is ran at a single node with > a single Intel atom processor. I have also ensured that no calls to > MPI_Init or MPI_Finalize have been optimized out by the compiler. > > > ___ > > users mailing list > > us...@open-mpi.org > > http://www.open-mpi.org/mailman/listinfo.cgi/users > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users >
Re: [OMPI users] Unexpected warning/return from mpirun with minimal MPI program
The return code is expected and the man page is incomplete. This was an intended change in behavior to more accurately report the outcome of a job. On Feb 19, 2012, at 11:08 PM, Truls Edvard Stokke wrote: > Hi Ralph, thank you for answering. > > So for clarity, > - the return code is expected and there is a bug in the man page, > - the warning is supposed to be printed in the event that a program exits > with a non-zero exit status even if it calls MPI_Finalize before it does so. > > Please correct me if either of those aren't really the case. > > When running the code with an older version of OpenMPI (1.4.3) there is no > warning. > If it is relevant there is no warning when running it with MPICH2. > > Is the warning an intended change from 1.4.x to 1.5.x or is it likely that my > installation of OpenMPI is configured incorrectly? > > On Mon, Feb 20, 2012 at 4:53 AM, Ralph Castain wrote: > If your program returns an error status (i.e., a non-zero exit status), then > mpirun passes that along to you so any script you are using can know that > something failed. > > > On Feb 19, 2012, at 7:41 PM, Truls Edvard Stokke wrote: > > > Hi, > > > > In running this minimal program (test.c) > > > > #include > > #include > > > > int main (int argc, char ** argv) { > > MPI_Init(&argc, &argv); > > MPI_Finalize(); > > > > exit(EXIT_FAILURE); > > } > > > > compiled and ran with the commands > > > > mpicc test.c > > mpirun -n 1 a.out > > > > I get the output > > > > -- > > mpirun noticed that the job aborted, but has no info as to the process > > that caused that situation. > > -- > > > > The return value of mpirun is 1 (presumably the value of EXIT_FAILURE) > > instead of the expected 0. > > Citing the manual page of mpirun, "mpirun returns 0 if all ranks started by > > mpirun exit after calling MPI_FINALIZE." which should be the case in the > > program. > > > > If EXIT_FAILURE is changed to EXIT_SUCCESS there is no output and mpirun > > returns 0 as expected. > > > > My OpenMPI version is 1.5.4, the code and output from ompi_info --all is > > attached. > > > > If it is relevant my OS is Fedora 16 and the packages installed are > > openmpi.i686 and openmpi-devel.i686, the code is ran at a single node with > > a single Intel atom processor. I have also ensured that no calls to > > MPI_Init or MPI_Finalize have been optimized out by the compiler. > > ___ > > users mailing list > > us...@open-mpi.org > > http://www.open-mpi.org/mailman/listinfo.cgi/users > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users
Re: [OMPI users] Unexpected warning/return from mpirun with minimal MPI program
Am 20.02.2012 um 15:27 schrieb Ralph Castain: > The return code is expected and the man page is incomplete. This was an > intended change in behavior to more accurately report the outcome of a job. With the recent discussion about a singleton startup: then there won't be any error message as a singleton startup. This is not consistent, but I see the intention. Maybe it could be checked against MPI_ERR_LASTCODE: if it's lower or equal: output MPI error message as observed, otherwise treat it as an application error unrelated to MPI, forward it without error message. -- Reuti > On Feb 19, 2012, at 11:08 PM, Truls Edvard Stokke wrote: > >> Hi Ralph, thank you for answering. >> >> So for clarity, >> - the return code is expected and there is a bug in the man page, >> - the warning is supposed to be printed in the event that a program exits >> with a non-zero exit status even if it calls MPI_Finalize before it does so. >> >> Please correct me if either of those aren't really the case. >> >> When running the code with an older version of OpenMPI (1.4.3) there is no >> warning. >> If it is relevant there is no warning when running it with MPICH2. >> >> Is the warning an intended change from 1.4.x to 1.5.x or is it likely that >> my installation of OpenMPI is configured incorrectly? >> >> On Mon, Feb 20, 2012 at 4:53 AM, Ralph Castain wrote: >> If your program returns an error status (i.e., a non-zero exit status), then >> mpirun passes that along to you so any script you are using can know that >> something failed. >> >> >> On Feb 19, 2012, at 7:41 PM, Truls Edvard Stokke wrote: >> >> > Hi, >> > >> > In running this minimal program (test.c) >> > >> > #include >> > #include >> > >> > int main (int argc, char ** argv) { >> > MPI_Init(&argc, &argv); >> > MPI_Finalize(); >> > >> > exit(EXIT_FAILURE); >> > } >> > >> > compiled and ran with the commands >> > >> > mpicc test.c >> > mpirun -n 1 a.out >> > >> > I get the output >> > >> > -- >> > mpirun noticed that the job aborted, but has no info as to the process >> > that caused that situation. >> > -- >> > >> > The return value of mpirun is 1 (presumably the value of EXIT_FAILURE) >> > instead of the expected 0. >> > Citing the manual page of mpirun, "mpirun returns 0 if all ranks started >> > by mpirun exit after calling MPI_FINALIZE." which should be the case in >> > the program. >> > >> > If EXIT_FAILURE is changed to EXIT_SUCCESS there is no output and mpirun >> > returns 0 as expected. >> > >> > My OpenMPI version is 1.5.4, the code and output from ompi_info --all is >> > attached. >> > >> > If it is relevant my OS is Fedora 16 and the packages installed are >> > openmpi.i686 and openmpi-devel.i686, the code is ran at a single node with >> > a single Intel atom processor. I have also ensured that no calls to >> > MPI_Init or MPI_Finalize have been optimized out by the compiler. >> > ___ >> > users mailing list >> > us...@open-mpi.org >> > http://www.open-mpi.org/mailman/listinfo.cgi/users >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users
Re: [OMPI users] WEXITSTATUS: OpenMPI 1.5.5 RC1 doesn't build on NetBSD (and perhaps other BSDs)
Better to handle these things on the devel list -- I'll reply over there. Thanks! On Feb 18, 2012, at 3:11 PM, Aleksej Saushev wrote: > Hello! > > WEXITSTATUS is defined in , see the patch attached. > > (Sorry, I couldn't find simple mail interface for bug reports.) > > > -- > HE CE3OH... > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/
[OMPI users] ROMIO Podcast
For those interested in MPI-IO, and ROMIO Jeff and I did an interview Rajeev and Rob: http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html Brock Palen www.umich.edu/~brockp CAEN Advanced Computing bro...@umich.edu (734)936-1985
[OMPI users] Using orterun to start jobs with numactl
Good afternoon, I'm working with some AMD Interlagos nodes (16-core, 4-socket), and I want to bind processes to cores in specific layouts. These may not be in logical order so I need to be able to my MPI app and point it to specific cores on specific nodes (although the core ordering is the same for all nodes). I'm assuming I need to "manually" start the processes using orted (or orterun) and numactl on the specific cores. Since I've never used orted or orterun to start jobs and I'm struggling with the man pages a bit - any suggestions? Thanks! Jeff
Re: [OMPI users] ROMIO Podcast
Brock, I listened to the podcast on Saturday, and I just downloaded it again 10 mins ago. Did the interview really end at 26:34?? And if I recall correctly, you & Jeff did not get a chance to ask them the "which source control system do you guys use" question :-D Rayson = Open Grid Scheduler / Grid Engine http://gridscheduler.sourceforge.net/ Scalable Grid Engine Support Program http://www.scalablelogic.com/ On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: > For those interested in MPI-IO, and ROMIO Jeff and I did an interview Rajeev > and Rob: > > http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html > > Brock Palen > www.umich.edu/~brockp > CAEN Advanced Computing > bro...@umich.edu > (734)936-1985 > > > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users
Re: [OMPI users] ROMIO Podcast
Little known secret: we edit before these things go to air. :-) The recordings almost always take about an hour, but we snip some things out. IIRC, we had some tech problems which wasted some time in this recording, and some off-recording kibitzing. :-) Also, it looks like Brock had a problem with the XML so that iTunes/RSS readers said the episode was 26:34. But when you download it, the MP3 is actually over 33 mins. I think Brock just updated the RSS, so we'll see when iTunes updates. On Feb 20, 2012, at 3:25 PM, Rayson Ho wrote: > Brock, > > I listened to the podcast on Saturday, and I just downloaded it again > 10 mins ago. > > Did the interview really end at 26:34?? And if I recall correctly, you > & Jeff did not get a chance to ask them the "which source control > system do you guys use" question :-D > > Rayson > > = > Open Grid Scheduler / Grid Engine > http://gridscheduler.sourceforge.net/ > > Scalable Grid Engine Support Program > http://www.scalablelogic.com/ > > > On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: >> For those interested in MPI-IO, and ROMIO Jeff and I did an interview Rajeev >> and Rob: >> >> http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html >> >> Brock Palen >> www.umich.edu/~brockp >> CAEN Advanced Computing >> bro...@umich.edu >> (734)936-1985 >> >> >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/
Re: [OMPI users] ROMIO Podcast
Hi Jeff, I use wget to download the file - and I use VideoLAN to play the mp3. VideoLAN shows that the file only has 26:34. I just quickly tried to use Chrome to play the file, and it showed that the file was over 33 mins. *However*, the podcast still ended at 26:34, after the ROMIO guys say "there are many MPI implementations, SGI, and HP, and what..." - so am I the only one who gets a corrupted file?? Rayson = Open Grid Scheduler / Grid Engine http://gridscheduler.sourceforge.net/ Scalable Grid Engine Support Program http://www.scalablelogic.com/ On Mon, Feb 20, 2012 at 3:45 PM, Jeffrey Squyres wrote: > Little known secret: we edit before these things go to air. :-) > > The recordings almost always take about an hour, but we snip some things out. > IIRC, we had some tech problems which wasted some time in this recording, > and some off-recording kibitzing. :-) > > Also, it looks like Brock had a problem with the XML so that iTunes/RSS > readers said the episode was 26:34. But when you download it, the MP3 is > actually over 33 mins. I think Brock just updated the RSS, so we'll see when > iTunes updates. > > > > On Feb 20, 2012, at 3:25 PM, Rayson Ho wrote: > >> Brock, >> >> I listened to the podcast on Saturday, and I just downloaded it again >> 10 mins ago. >> >> Did the interview really end at 26:34?? And if I recall correctly, you >> & Jeff did not get a chance to ask them the "which source control >> system do you guys use" question :-D >> >> Rayson >> >> = >> Open Grid Scheduler / Grid Engine >> http://gridscheduler.sourceforge.net/ >> >> Scalable Grid Engine Support Program >> http://www.scalablelogic.com/ >> >> >> On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: >>> For those interested in MPI-IO, and ROMIO Jeff and I did an interview >>> Rajeev and Rob: >>> >>> http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html >>> >>> Brock Palen >>> www.umich.edu/~brockp >>> CAEN Advanced Computing >>> bro...@umich.edu >>> (734)936-1985 >>> >>> >>> >>> >>> ___ >>> users mailing list >>> us...@open-mpi.org >>> http://www.open-mpi.org/mailman/listinfo.cgi/users >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > > > -- > Jeff Squyres > jsquy...@cisco.com > For corporate legal information go to: > http://www.cisco.com/web/about/doing_business/legal/cri/ > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- == Open Grid Scheduler - The Official Open Source Grid Engine http://gridscheduler.sourceforge.net/
Re: [OMPI users] ROMIO Podcast
Yes, something is borked here. I just listened to what I got in iTunes and it's both longer than 33 mins (i.e., it keeps playing after the timer reaches 0:00), and then it cuts off in the middle of one of Rajeev's answers. Doh. :-( Brock is checking into it… On Feb 20, 2012, at 4:37 PM, Rayson Ho wrote: > Hi Jeff, > > I use wget to download the file - and I use VideoLAN to play the mp3. > VideoLAN shows that the file only has 26:34. > > I just quickly tried to use Chrome to play the file, and it showed > that the file was over 33 mins. *However*, the podcast still ended at > 26:34, after the ROMIO guys say "there are many MPI implementations, > SGI, and HP, and what..." - so am I the only one who gets a corrupted > file?? > > Rayson > > = > Open Grid Scheduler / Grid Engine > http://gridscheduler.sourceforge.net/ > > Scalable Grid Engine Support Program > http://www.scalablelogic.com/ > > > > On Mon, Feb 20, 2012 at 3:45 PM, Jeffrey Squyres wrote: >> Little known secret: we edit before these things go to air. :-) >> >> The recordings almost always take about an hour, but we snip some things >> out. IIRC, we had some tech problems which wasted some time in this >> recording, and some off-recording kibitzing. :-) >> >> Also, it looks like Brock had a problem with the XML so that iTunes/RSS >> readers said the episode was 26:34. But when you download it, the MP3 is >> actually over 33 mins. I think Brock just updated the RSS, so we'll see >> when iTunes updates. >> >> >> >> On Feb 20, 2012, at 3:25 PM, Rayson Ho wrote: >> >>> Brock, >>> >>> I listened to the podcast on Saturday, and I just downloaded it again >>> 10 mins ago. >>> >>> Did the interview really end at 26:34?? And if I recall correctly, you >>> & Jeff did not get a chance to ask them the "which source control >>> system do you guys use" question :-D >>> >>> Rayson >>> >>> = >>> Open Grid Scheduler / Grid Engine >>> http://gridscheduler.sourceforge.net/ >>> >>> Scalable Grid Engine Support Program >>> http://www.scalablelogic.com/ >>> >>> >>> On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: For those interested in MPI-IO, and ROMIO Jeff and I did an interview Rajeev and Rob: http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html Brock Palen www.umich.edu/~brockp CAEN Advanced Computing bro...@umich.edu (734)936-1985 ___ users mailing list us...@open-mpi.org http://www.open-mpi.org/mailman/listinfo.cgi/users >>> ___ >>> users mailing list >>> us...@open-mpi.org >>> http://www.open-mpi.org/mailman/listinfo.cgi/users >> >> >> -- >> Jeff Squyres >> jsquy...@cisco.com >> For corporate legal information go to: >> http://www.cisco.com/web/about/doing_business/legal/cri/ >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > > > > -- > == > Open Grid Scheduler - The Official Open Source Grid Engine > http://gridscheduler.sourceforge.net/ > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/
Re: [OMPI users] ROMIO Podcast
This should be fixed, there was a bad upload, the server had a different copy than my machine. The fixed version is in place. Feel free to grab it again. Brock Palen www.umich.edu/~brockp CAEN Advanced Computing bro...@umich.edu (734)936-1985 On Feb 20, 2012, at 4:43 PM, Jeffrey Squyres wrote: > Yes, something is borked here. I just listened to what I got in iTunes and > it's both longer than 33 mins (i.e., it keeps playing after the timer reaches > 0:00), and then it cuts off in the middle of one of Rajeev's answers. Doh. > :-( > > Brock is checking into it… > > > On Feb 20, 2012, at 4:37 PM, Rayson Ho wrote: > >> Hi Jeff, >> >> I use wget to download the file - and I use VideoLAN to play the mp3. >> VideoLAN shows that the file only has 26:34. >> >> I just quickly tried to use Chrome to play the file, and it showed >> that the file was over 33 mins. *However*, the podcast still ended at >> 26:34, after the ROMIO guys say "there are many MPI implementations, >> SGI, and HP, and what..." - so am I the only one who gets a corrupted >> file?? >> >> Rayson >> >> = >> Open Grid Scheduler / Grid Engine >> http://gridscheduler.sourceforge.net/ >> >> Scalable Grid Engine Support Program >> http://www.scalablelogic.com/ >> >> >> >> On Mon, Feb 20, 2012 at 3:45 PM, Jeffrey Squyres wrote: >>> Little known secret: we edit before these things go to air. :-) >>> >>> The recordings almost always take about an hour, but we snip some things >>> out. IIRC, we had some tech problems which wasted some time in this >>> recording, and some off-recording kibitzing. :-) >>> >>> Also, it looks like Brock had a problem with the XML so that iTunes/RSS >>> readers said the episode was 26:34. But when you download it, the MP3 is >>> actually over 33 mins. I think Brock just updated the RSS, so we'll see >>> when iTunes updates. >>> >>> >>> >>> On Feb 20, 2012, at 3:25 PM, Rayson Ho wrote: >>> Brock, I listened to the podcast on Saturday, and I just downloaded it again 10 mins ago. Did the interview really end at 26:34?? And if I recall correctly, you & Jeff did not get a chance to ask them the "which source control system do you guys use" question :-D Rayson = Open Grid Scheduler / Grid Engine http://gridscheduler.sourceforge.net/ Scalable Grid Engine Support Program http://www.scalablelogic.com/ On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: > For those interested in MPI-IO, and ROMIO Jeff and I did an interview > Rajeev and Rob: > > http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html > > Brock Palen > www.umich.edu/~brockp > CAEN Advanced Computing > bro...@umich.edu > (734)936-1985 > > > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users ___ users mailing list us...@open-mpi.org http://www.open-mpi.org/mailman/listinfo.cgi/users >>> >>> >>> -- >>> Jeff Squyres >>> jsquy...@cisco.com >>> For corporate legal information go to: >>> http://www.cisco.com/web/about/doing_business/legal/cri/ >>> >>> >>> ___ >>> users mailing list >>> us...@open-mpi.org >>> http://www.open-mpi.org/mailman/listinfo.cgi/users >> >> >> >> -- >> == >> Open Grid Scheduler - The Official Open Source Grid Engine >> http://gridscheduler.sourceforge.net/ >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > > > -- > Jeff Squyres > jsquy...@cisco.com > For corporate legal information go to: > http://www.cisco.com/web/about/doing_business/legal/cri/ > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users
Re: [OMPI users] ROMIO Podcast
Thanks, I just downloaded it again and it is not a corrupted file anymore! (But what's to the "what source control system do you guys use" question? :-D ) Rayson = Open Grid Scheduler / Grid Engine http://gridscheduler.sourceforge.net/ Scalable Grid Engine Support Program http://www.scalablelogic.com/ On Mon, Feb 20, 2012 at 4:47 PM, Brock Palen wrote: > This should be fixed, there was a bad upload, the server had a different copy > than my machine. The fixed version is in place. Feel free to grab it again. > > Brock Palen > www.umich.edu/~brockp > CAEN Advanced Computing > bro...@umich.edu > (734)936-1985 > > > > On Feb 20, 2012, at 4:43 PM, Jeffrey Squyres wrote: > >> Yes, something is borked here. I just listened to what I got in iTunes and >> it's both longer than 33 mins (i.e., it keeps playing after the timer >> reaches 0:00), and then it cuts off in the middle of one of Rajeev's >> answers. Doh. :-( >> >> Brock is checking into it… >> >> >> On Feb 20, 2012, at 4:37 PM, Rayson Ho wrote: >> >>> Hi Jeff, >>> >>> I use wget to download the file - and I use VideoLAN to play the mp3. >>> VideoLAN shows that the file only has 26:34. >>> >>> I just quickly tried to use Chrome to play the file, and it showed >>> that the file was over 33 mins. *However*, the podcast still ended at >>> 26:34, after the ROMIO guys say "there are many MPI implementations, >>> SGI, and HP, and what..." - so am I the only one who gets a corrupted >>> file?? >>> >>> Rayson >>> >>> = >>> Open Grid Scheduler / Grid Engine >>> http://gridscheduler.sourceforge.net/ >>> >>> Scalable Grid Engine Support Program >>> http://www.scalablelogic.com/ >>> >>> >>> >>> On Mon, Feb 20, 2012 at 3:45 PM, Jeffrey Squyres wrote: Little known secret: we edit before these things go to air. :-) The recordings almost always take about an hour, but we snip some things out. IIRC, we had some tech problems which wasted some time in this recording, and some off-recording kibitzing. :-) Also, it looks like Brock had a problem with the XML so that iTunes/RSS readers said the episode was 26:34. But when you download it, the MP3 is actually over 33 mins. I think Brock just updated the RSS, so we'll see when iTunes updates. On Feb 20, 2012, at 3:25 PM, Rayson Ho wrote: > Brock, > > I listened to the podcast on Saturday, and I just downloaded it again > 10 mins ago. > > Did the interview really end at 26:34?? And if I recall correctly, you > & Jeff did not get a chance to ask them the "which source control > system do you guys use" question :-D > > Rayson > > = > Open Grid Scheduler / Grid Engine > http://gridscheduler.sourceforge.net/ > > Scalable Grid Engine Support Program > http://www.scalablelogic.com/ > > > On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: >> For those interested in MPI-IO, and ROMIO Jeff and I did an interview >> Rajeev and Rob: >> >> http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html >> >> Brock Palen >> www.umich.edu/~brockp >> CAEN Advanced Computing >> bro...@umich.edu >> (734)936-1985 >> >> >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/ ___ users mailing list us...@open-mpi.org http://www.open-mpi.org/mailman/listinfo.cgi/users >>> >>> >>> >>> -- >>> == >>> Open Grid Scheduler - The Official Open Source Grid Engine >>> http://gridscheduler.sourceforge.net/ >>> >>> ___ >>> users mailing list >>> us...@open-mpi.org >>> http://www.open-mpi.org/mailman/listinfo.cgi/users >> >> >> -- >> Jeff Squyres >> jsquy...@cisco.com >> For corporate legal information go to: >> http://www.cisco.com/web/about/doing_business/legal/cri/ >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- == Open Grid Scheduler - The Official Open Source Grid Engine http://gridscheduler.sourceforge.net/
Re: [OMPI users] ROMIO Podcast
Thanks, I just downloaded it again and it is not a corrupted file anymore! (But what's happened to the "what source control system do you guys use" question usually asked by Jeff? :-D ) Rayson = Open Grid Scheduler / Grid Engine http://gridscheduler.sourceforge.net/ Scalable Grid Engine Support Program http://www.scalablelogic.com/ On Mon, Feb 20, 2012 at 4:47 PM, Brock Palen wrote: > This should be fixed, there was a bad upload, the server had a different copy > than my machine. The fixed version is in place. Feel free to grab it again. > > Brock Palen > www.umich.edu/~brockp > CAEN Advanced Computing > bro...@umich.edu > (734)936-1985 > > > > On Feb 20, 2012, at 4:43 PM, Jeffrey Squyres wrote: > >> Yes, something is borked here. I just listened to what I got in iTunes and >> it's both longer than 33 mins (i.e., it keeps playing after the timer >> reaches 0:00), and then it cuts off in the middle of one of Rajeev's >> answers. Doh. :-( >> >> Brock is checking into it… >> >> >> On Feb 20, 2012, at 4:37 PM, Rayson Ho wrote: >> >>> Hi Jeff, >>> >>> I use wget to download the file - and I use VideoLAN to play the mp3. >>> VideoLAN shows that the file only has 26:34. >>> >>> I just quickly tried to use Chrome to play the file, and it showed >>> that the file was over 33 mins. *However*, the podcast still ended at >>> 26:34, after the ROMIO guys say "there are many MPI implementations, >>> SGI, and HP, and what..." - so am I the only one who gets a corrupted >>> file?? >>> >>> Rayson >>> >>> = >>> Open Grid Scheduler / Grid Engine >>> http://gridscheduler.sourceforge.net/ >>> >>> Scalable Grid Engine Support Program >>> http://www.scalablelogic.com/ >>> >>> >>> >>> On Mon, Feb 20, 2012 at 3:45 PM, Jeffrey Squyres wrote: Little known secret: we edit before these things go to air. :-) The recordings almost always take about an hour, but we snip some things out. IIRC, we had some tech problems which wasted some time in this recording, and some off-recording kibitzing. :-) Also, it looks like Brock had a problem with the XML so that iTunes/RSS readers said the episode was 26:34. But when you download it, the MP3 is actually over 33 mins. I think Brock just updated the RSS, so we'll see when iTunes updates. On Feb 20, 2012, at 3:25 PM, Rayson Ho wrote: > Brock, > > I listened to the podcast on Saturday, and I just downloaded it again > 10 mins ago. > > Did the interview really end at 26:34?? And if I recall correctly, you > & Jeff did not get a chance to ask them the "which source control > system do you guys use" question :-D > > Rayson > > = > Open Grid Scheduler / Grid Engine > http://gridscheduler.sourceforge.net/ > > Scalable Grid Engine Support Program > http://www.scalablelogic.com/ > > > On Mon, Feb 20, 2012 at 3:05 PM, Brock Palen wrote: >> For those interested in MPI-IO, and ROMIO Jeff and I did an interview >> Rajeev and Rob: >> >> http://www.rce-cast.com/Podcast/rce-66-romio-mpi-io.html >> >> Brock Palen >> www.umich.edu/~brockp >> CAEN Advanced Computing >> bro...@umich.edu >> (734)936-1985 >> >> >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/ ___ users mailing list us...@open-mpi.org http://www.open-mpi.org/mailman/listinfo.cgi/users >>> >>> >>> >>> -- >>> == >>> Open Grid Scheduler - The Official Open Source Grid Engine >>> http://gridscheduler.sourceforge.net/ >>> >>> ___ >>> users mailing list >>> us...@open-mpi.org >>> http://www.open-mpi.org/mailman/listinfo.cgi/users >> >> >> -- >> Jeff Squyres >> jsquy...@cisco.com >> For corporate legal information go to: >> http://www.cisco.com/web/about/doing_business/legal/cri/ >> >> >> ___ >> users mailing list >> us...@open-mpi.org >> http://www.open-mpi.org/mailman/listinfo.cgi/users > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- == Open Grid Scheduler - The Official Open Source Grid Engine http://gridscheduler.sourceforge.
Re: [OMPI users] Using orterun to start jobs with numactl
You probably want to use the rank file mapper and/or the slot_list capability. See the following for more info: http://www.open-mpi.org/faq/?category=tuning#using-paffinity-v1.3 On Feb 20, 2012, at 1:05 PM, Jeff Layton wrote: > Good afternoon, > > I'm working with some AMD Interlagos nodes (16-core, 4-socket), > and I want to bind processes to cores in specific layouts. These > may not be in logical order so I need to be able to my MPI app > and point it to specific cores on specific nodes (although the > core ordering is the same for all nodes). > > I'm assuming I need to "manually" start the processes using > orted (or orterun) and numactl on the specific cores. Since I've > never used orted or orterun to start jobs and I'm struggling with > the man pages a bit - any suggestions? > > Thanks! > > Jeff > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users
Re: [OMPI users] ROMIO Podcast
On Feb 20, 2012, at 5:06 PM, Rayson Ho wrote: > Thanks, I just downloaded it again and it is not a corrupted file anymore! > > (But what's happened to the "what source control system do you guys > use" question usually asked by Jeff? :-D ) I need to get back to asking that one. :-) It's just a personal curiosity of mine; that's really the only reason I ask. -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/
Re: [OMPI users] ROMIO Podcast
On Mon, Feb 20, 2012 at 6:02 PM, Jeffrey Squyres wrote: >> (But what's happened to the "what source control system do you guys >> use" question usually asked by Jeff? :-D ) > > > I need to get back to asking that one. :-) Skynet needs to send Jeff (and Arnold) back in time! > It's just a personal curiosity of mine; that's really the only reason I ask. BTW, since most of the interviewees are opensource project maintainers, next time can you ask them how much external contribution they get (%), and who are the main external contributors (students? HPC labs? Industry?), and how do they handle external contributions (need copyright assignment?). And how do they handle testing, and performance regression... Rayson = Open Grid Scheduler / Grid Engine http://gridscheduler.sourceforge.net/ Scalable Grid Engine Support Program http://www.scalablelogic.com/ > -- > Jeff Squyres > jsquy...@cisco.com > For corporate legal information go to: > http://www.cisco.com/web/about/doing_business/legal/cri/ > > > ___ > users mailing list > us...@open-mpi.org > http://www.open-mpi.org/mailman/listinfo.cgi/users -- == Open Grid Scheduler - The Official Open Source Grid Engine http://gridscheduler.sourceforge.net/