Esempio n. 1
0
 def done(self):
     charm.exit()
Esempio n. 2
0
 def doneReduction(self, result):
     assert result == 1 * self.nElements, "Reduction for dynamic array insertion failed."
     print("All done.")
     charm.exit()
Esempio n. 3
0
def main(args):
    print("Charm program started on processor", charm.myPe())
    print("Running on", charm.numPes(), "processors")
    charm.exit()
Esempio n. 4
0
 def report(self):
     charm.printStats()
     charm.exit()
Esempio n. 5
0
 def collectResult(self, result):
     print("Result is", result)
     charm.exit()
Esempio n. 6
0
 def done(self):
     charm.printStats()
     charm.exit()
Esempio n. 7
0
 def done(self):
   print("All done")
   charm.exit()
Esempio n. 8
0
 def done(self, hellos):
     print("All done " + str(hellos))
     charm.exit()