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