Skip to Content.
Sympa Menu

charm - Re: [charm] [ppl] BGQ Charm++

charm AT lists.cs.illinois.edu

Subject: Charm++ parallel programming system

List archive

Re: [charm] [ppl] BGQ Charm++


Chronological Thread 
  • From: Jim Phillips <jim AT ks.uiuc.edu>
  • To: Phil Miller <mille121 AT illinois.edu>
  • Cc: Jeff Hammond <jhammond AT alcf.anl.gov>, charm AT cs.illinois.edu, Edgar Solomonik <solomon AT eecs.berkeley.edu>
  • Subject: Re: [charm] [ppl] BGQ Charm++
  • Date: Mon, 14 May 2012 23:48:57 -0500 (CDT)
  • List-archive: <http://lists.cs.uiuc.edu/pipermail/charm>
  • List-id: CHARM parallel programming system <charm.cs.uiuc.edu>


The front of of BG/Q is a Power 7 so compilation times are reasonable.

-Jim


On Mon, 14 May 2012, Phil Miller wrote:

On Mon, May 14, 2012 at 8:02 PM, Edgar Solomonik
<solomon AT eecs.berkeley.edu>
wrote:
Is there a build of Charm++ on Cetus (BG/Q at ALCF)?  Looks like
mpi-bluegeneq does a g++ build, but I also see a xlc config file in
arch.  Is there a faster xlc build I can use?

The pami-bluegeneq build should be somewhat better :-). In either
case, the xlc modifier on the build will switch you from g++ to xlC++
- better code, but much slower compilation.

Also this little problem in the Charm++ version of git that I pulled
an hour ago.

TopoManager.C:302

CmiAssert( a>=0 && x<dimNA && b>=0 && b<dimNB && c>=0 && c<dimNC &&
d>=0 && d<dimND && e>=0 && e<dimNE && t>=0 && t<dimNT );

should be

CmiAssert( a>=0 && a<dimNA && b>=0 && b<dimNB && c>=0 && c<dimNC &&
d>=0 && d<dimND && e>=0 && e<dimNE && t>=0 && t<dimNT );

You should still have commit privileges - go ahead and fix it.

Phil

_______________________________________________
charm mailing list
charm AT cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/charm

_______________________________________________
ppl mailing list
ppl AT cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/ppl



Archive powered by MHonArc 2.6.16.

Top of Page