Zane Fink

Results 24 comments of Zane Fink

Thanks for creating this issue. Can you paste the command you used to build?

How many PEs did you use to run the above code? Entry methods will run to completion or until the coroutine running the entry method voluntarily yields execution. If the...

That's interesting that using a PE map solves the problem. I think there are two problems here: 1. If 2 chares are running on the same PE and one does...

And regarding your most recent code, it looks like reductions might currently require all PEs to participate in some form, even if the PE's chares do not contribute anything. This...

Of course, but I'm saying that charm.sleep(0) could be used to overcome the issues with reductions outlined above at the cost of a few microseconds per camera image. You could...

I should have specified earlier that ```charm.sleep(n)```, when called from a coroutine, is not "do nothing until n seconds have passed", but is rather "do any useful work you might...

Hi Marc, As a debug step, can you attempt to install Charm4Py without the MPI backend enabled? It would help confirm a suspicion I have regarding the build system.

Can you paste the command you used to produce this output?

Aah, I see. When starting Charm4Py scripts, you actually want to run the ```charmrun.start``` program that becomes available when you installed Charm4Py. Here is an example of the command I...

```How to do this in a case where there is a main program that launches a child process and this child process needs to run in parallel?``` Can you explain...