Skip to Content.
Sympa Menu

charm - Re: [charm] [Charm-commit] branch charm updated. v6.5.0-beta1-296-g4df6f7c

charm AT lists.cs.illinois.edu

Subject: Charm++ parallel programming system

List archive

Re: [charm] [Charm-commit] branch charm updated. v6.5.0-beta1-296-g4df6f7c


Chronological Thread 
  • From: Nikhil Jain <nikhil AT illinois.edu>
  • To: "charm AT cs.illinois.edu" <charm AT cs.illinois.edu>, "Miller, Philip B" <mille121 AT illinois.edu>, "Zheng, Gengbin" <gzheng AT illinois.edu>, "Kale, Laxmikant V" <kale AT illinois.edu>, "Bohm, Eric J" <ebohm AT illinois.edu>, "Lifflander, Jonathan Josiah" <jliffl2 AT illinois.edu>, "charm-commit AT cs.illinois.edu" <charm-commit AT cs.illinois.edu>
  • Subject: Re: [charm] [Charm-commit] branch charm updated. v6.5.0-beta1-296-g4df6f7c
  • Date: Sat, 9 Mar 2013 21:34:28 -0600
  • List-archive: <http://lists.cs.uiuc.edu/pipermail/charm/>
  • List-id: CHARM parallel programming system <charm.cs.uiuc.edu>

A minor thing - these changes result in a warning-

In file included from ../../../bin/../include/charm++.h:1029,
from jacobi2d.decl.h:3,
from jacobi2d.C:1:
../../../bin/../include/sdag.h: In constructor
ŒTransportableMsg::TransportableMsg(CkMessage*)¹:
../../../bin/../include/sdag.h:49: warning: ŒTransportableMsg::msg¹ will
be initialized after
../../../bin/../include/sdag.h:55: warning: base ŒTransportableEntity¹
../../../bin/../include/sdag.h:53: warning: when initialized here

--Nikhil


--
Nikhil Jain,
nikhil AT illinois.edu,
http://charm.cs.uiuc.edu/people/nikhil
Doctoral Candidate @ CS, UIUC






On 3/9/13 8:17 PM, "Gitosis server account"
<core-ppl AT cs.uiuc.edu>
wrote:

>The branch, charm has been updated
> via 4df6f7c70afd512ef1fe583ddf460bf7ca03b36d (commit)
> from d2c7418d883c2ac2dcbb3681a2ae72e5c8b3b2b2 (commit)
>
>Those revisions listed above that are new to this repository have
>not appeared on any other notification email; so we list those
>revisions in full, below.
>
>- Log -----------------------------------------------------------------
>commit 4df6f7c70afd512ef1fe583ddf460bf7ca03b36d
>Author: Jonathan Lifflander
><jliffl2 AT illinois.edu>
>Date: Sat Mar 9 20:16:57 2013 -0600
>
> sdag: cleanup (reindent and reformat) CStateVar
>
>diff --git a/src/xlat-i/sdag/CStateVar.h b/src/xlat-i/sdag/CStateVar.h
>index bcfcaf9..ea18b08 100644
>--- a/src/xlat-i/sdag/CStateVar.h
>+++ b/src/xlat-i/sdag/CStateVar.h
>@@ -5,10 +5,9 @@
> #include "xi-symbol.h"
>
> namespace xi {
>-
> class ParamList;
>
>-struct CStateVar {
>+ struct CStateVar {
> int isVoid;
> XStr *type;
> int numPtrs;
>@@ -19,18 +18,24 @@ struct CStateVar {
> int isMsg;
> bool isCounter, isSpeculator;
>
>- CStateVar(int v, const char *t, int np, const char *n, XStr *r,
>const char *a, int m) : isVoid(v), numPtrs(np), byRef(r), isMsg(m),
>declaredRef(NULL), byConst(false), isCounter(false), isSpeculator(false)
>-
>- {
>- if (t != NULL) { type = new XStr(t); }
>- else {type = NULL;}
>- if (n != NULL) { name = new XStr(n); }
>- else { name = NULL; }
>- if (a != NULL) {arrayLength = new XStr(a); }
>- else { arrayLength = NULL; }
>- }
>-
>-CStateVar(ParamList *pl)
>+ CStateVar(int v, const char *t, int np, const char *n, XStr *r,
>const char *a, int m)
>+ : isVoid(v)
>+ , numPtrs(np)
>+ , byRef(r)
>+ , isMsg(m)
>+ , declaredRef(NULL)
>+ , byConst(false)
>+ , isCounter(false)
>+ , isSpeculator(false) {
>+ if (t != NULL) { type = new XStr(t); }
>+ else {type = NULL;}
>+ if (n != NULL) { name = new XStr(n); }
>+ else { name = NULL; }
>+ if (a != NULL) {arrayLength = new XStr(a); }
>+ else { arrayLength = NULL; }
>+ }
>+
>+ CStateVar(ParamList *pl)
> : isVoid(0)
> , type(new XStr(*(pl->param->getType())))
> , numPtrs(0)
>@@ -42,8 +47,8 @@ CStateVar(ParamList *pl)
> , isMsg(pl->isMessage())
> , isCounter(false)
> , isSpeculator(false)
>- { }
>-};
>+ { }
>+ };
>
> }
>
>
>-----------------------------------------------------------------------
>
>Summary of changes:
> src/xlat-i/sdag/CStateVar.h | 37 +++++++++++++++++++++----------------
> 1 files changed, 21 insertions(+), 16 deletions(-)
>
>
>hooks/post-receive
>--
>Charm++ Adaptive Runtime System and Libraries
>_______________________________________________
>Charm-commit mailing list
>Charm-commit AT cs.uiuc.edu
>http://lists.cs.uiuc.edu/mailman/listinfo/charm-commit






  • Re: [charm] [Charm-commit] branch charm updated. v6.5.0-beta1-296-g4df6f7c, Nikhil Jain, 03/09/2013

Archive powered by MHonArc 2.6.16.

Top of Page