Skip to Content.
Sympa Menu

charm - [charm] Trying to run my FMM charm on a Cluster

charm AT lists.cs.illinois.edu

Subject: Charm++ parallel programming system

List archive

[charm] Trying to run my FMM charm on a Cluster


Chronological Thread 
  • From: Mustafa Abdul Jabbar <musbar AT gmail.com>
  • To: charm AT cs.uiuc.edu
  • Subject: [charm] Trying to run my FMM charm on a Cluster
  • Date: Sat, 12 Apr 2014 19:10:06 +0300
  • List-archive: <http://lists.cs.uiuc.edu/pipermail/charm/>
  • List-id: CHARM parallel programming system <charm.cs.uiuc.edu>

Hello,
I have been trying to run my charm job on cluster that uses sbatch for submitting job scripts and ibrun for running them
My first trial with ibrun worked but yielded a job that ran independently on the processors (i.e. as if each job is run locally"

Some threads said that I need to write a script for mpiexec to deal with ibrun

So I wrote this script and named it mympiexec
#!/bin/csh
shift; shift; exec ibrun $*

and this was my job script

#!/bin/bash
#SBATCH -J FMM
#SBATCH -o %j32.o
#SBATCH -p normal
#SBATCH -n 16
#SBATCH -t 00:10:00
./charmrun +p16 ++mpiexec ++remote-shell ~/exafmm-charm/examples/
charmexec ./a.out

I get "couldn't locate mpiexec program" when that's run. I tried to put the shell in one of the PATHs and it was of no use.

here's my nodelist "~/.nodelist"

group main ++shell ssh
host localhost






Archive powered by MHonArc 2.6.16.

Top of Page