Skip to Content.
Sympa Menu

charm - [charm] custom packed messages

charm AT lists.cs.illinois.edu

Subject: Charm++ parallel programming system

List archive

[charm] custom packed messages


Chronological Thread 
  • From: Nicolas Bock <nicolasbock AT gmail.com>
  • To: "charm AT cs.uiuc.edu" <charm AT cs.uiuc.edu>
  • Subject: [charm] custom packed messages
  • Date: Thu, 14 Nov 2013 15:58:35 -0700
  • List-archive: <http://lists.cs.uiuc.edu/pipermail/charm/>
  • List-id: CHARM parallel programming system <charm.cs.uiuc.edu>

Hi,

I have implemented a custom packed message, closely following the
description in section 10.1.3.1. When I run the program however, the
pack() and unpack() methods never get executed.

In the interface file I have

entry [sync] PackedMsg * getStuff (void);

and in the .cc file

PackedMsg * getStuff (void) {
return new PackedMsg(stuff);
}

where stuff is a private field in the chare class. Is there anything
else I need to do to make sure that the pack() and unpack() methods
are used?

Thanks,

nick




Archive powered by MHonArc 2.6.16.

Top of Page