active questions tagged coroutine - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:21:14Z http://stackoverflow.com/feeds/tag/coroutine http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1718173/differences-between-coroutines-and-goto 3 Differences between Coroutines and GoTo??? mRt 2009-11-11T21:22:23Z 2009-11-11T21:44:25Z <p>I always read about the horrible thing that "goto" is. But, todaym reading about the google programming language "Go" <a href="http://golang.org/" rel="nofollow">http://golang.org/</a> and i see that it suports Coroutines (Goroutines).</p> <p>The question is:</p> <p>Coroutine == GoTo ??</p> <p>Or</p> <p>Coroutine != GoTo??? </p> <p>Why??</p> http://stackoverflow.com/questions/564060/python-generators-and-co-routines 4 Python generators and co-routines. shafik23 2009-02-19T05:35:09Z 2009-08-28T15:34:02Z <p>Can someone provide me with a brief introduction on how to use Python generators to implement coroutines? </p> http://stackoverflow.com/questions/1319332/design-pattern-alternative-to-coroutines 6 Design Pattern Alternative to Coroutines jameszhao00 2009-08-23T19:24:25Z 2009-08-28T10:06:36Z <p>Hi,</p> <p>Currently, I have a large number of C# computations (method calls) residing in a queue that will be run sequentially. Each computation will use some high-latency service (network, disk...).</p> <p>I was going to use Mono coroutines to allow the next computation in the computation queue to continue while a previous computation is waiting for the high latency service to return. However, I prefer to not depend on Mono coroutines.</p> <p>Is there a design pattern that's implementable in pure C# that will enable me to process additional computations while waiting for high latency services to return? </p> <p>Thanks</p> <p><strong>Update:</strong></p> <p>I need to execute a huge number (>10000) of tasks, and each task will be using some high-latency service. On Windows, you can't create that much threads.</p> <p><strong>Update:</strong></p> <p>Basically, I need a design pattern that emulates the advantages (as follows) of tasklets in Stackless Python (<a href="http://www.stackless.com/" rel="nofollow">http://www.stackless.com/</a>)</p> <ol> <li>Huge # of tasks</li> <li>If a task blocks the next task in the queue executes</li> <li>No wasted cpu cycle</li> <li>Minimal overhead switching between tasks</li> </ol> http://stackoverflow.com/questions/1331416/mono-continuations-memory-keeps-increasing-after-store 0 Mono Continuations - Memory keeps increasing after store() jameszhao00 2009-08-25T22:39:25Z 2009-08-25T22:39:25Z <p>Hi,</p> <p>Here's Mono Continuations' continuation_store (...). From looking at the code below, it appears as though store() follows these two branches:</p> <ol> <li><code>cont-&gt;saved_stack &amp;&amp; num_bytes &lt;= cont-&gt;stack_alloc_size</code> <ul> <li>use the memory directly </li> </ul></li> <li>else <ul> <li>gc free the used memory, and create some new memory.</li> </ul></li> </ol> <p>However, the weird thing is if I repeatedly use continuation_store(), the memory usage increases until at a later step a huge and laggy GC operation is done. Can anyone explain why this happens?</p> <p>Thanks</p> <pre><code>static int continuation_store (MonoContinuation *cont, int state, MonoException **e) { MonoLMF *lmf = mono_get_lmf (); gsize num_bytes; if (!cont-&gt;domain) *e = mono_get_exception_argument ("cont", "Continuation not initialized"); if (cont-&gt;domain != mono_domain_get () || cont-&gt;thread_id != GetCurrentThreadId ()) *e = mono_get_exception_argument ("cont", "Continuation from another thread or domain"); cont-&gt;lmf = lmf; cont-&gt;return_ip = __builtin_return_address (0); cont-&gt;return_sp = __builtin_frame_address (0); num_bytes = (char*)cont-&gt;top_sp - (char*)cont-&gt;return_sp; /*g_print ("store: %d bytes, sp: %p, ip: %p, lmf: %p\n", num_bytes, cont-&gt;return_sp, cont-&gt;return_ip, lmf);*/ if (cont-&gt;saved_stack &amp;&amp; num_bytes &lt;= cont-&gt;stack_alloc_size) { /* clear to avoid GC retention */ if (num_bytes &lt; cont-&gt;stack_used_size) memset ((char*)cont-&gt;saved_stack + num_bytes, 0, cont-&gt;stack_used_size - num_bytes); } else { tasklets_lock (); internal_init (); if (cont-&gt;saved_stack) { mono_g_hash_table_remove (keepalive_stacks, cont-&gt;saved_stack); mono_gc_free_fixed (cont-&gt;saved_stack); } cont-&gt;stack_used_size = num_bytes; cont-&gt;stack_alloc_size = num_bytes * 1.1; cont-&gt;saved_stack = mono_gc_alloc_fixed (cont-&gt;stack_alloc_size, NULL); mono_g_hash_table_insert (keepalive_stacks, cont-&gt;saved_stack, cont-&gt;saved_stack); tasklets_unlock (); } memcpy (cont-&gt;saved_stack, cont-&gt;return_sp, num_bytes); return state; } </code></pre> http://stackoverflow.com/questions/1290051/overhead-of-mono-tasklet-co-routines 2 Overhead of Mono Tasklet/Co-Routines jameszhao00 2009-08-17T19:52:31Z 2009-08-18T06:53:13Z <p>Hi,</p> <p><strong>What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework?</strong></p> <p><strong>How does this overhead (coroutine performance / raw performance) compare to other frameworks such as Lua Coroutine and stackless python?</strong></p> <p>In Mono 2.6 continuation/coroutines support will be added. I built a svn version and used the following code to estimate its overhead</p> <pre><code>static void Main() { Console.WriteLine("starting.,.."); for(int i = 0; i &lt; 10000; i++) { MicroThread t1 = new MicroThread(Run1); t1.Start(); } Scheduler.Run(); Console.WriteLine("starting raw loop.,.."); int x = 2; for (int i = 0; i &lt; 10000 * 400; i++ ) { x++; } Console.WriteLine("1finished.,.. " + x.ToString()); Console.ReadLine(); } static void Run1() { for (int y = 0; y &lt; 400; y++) { MicroThread.CurrentThread.Yield(); } } </code></pre> <p>The microthread/scheduler run took around 1.5-2 seconds, while the raw loop is nearly instantenously. While an overhead is expected, this seems a bit much.</p> <p>What are the main performance overheads of the new Mono Continuations/Tasklet framework? How does this overhead (coroutine performance / raw performance) compare to other frameworks such as Lua Coroutine and stackless python?</p> <p>Thanks</p> http://stackoverflow.com/questions/1247894/coroutines-for-game-design 6 Coroutines for game design? Kiv 2009-08-08T03:31:01Z 2009-08-10T14:16:26Z <p>I've heard that coroutines are a good way to structure games (e.g., <a href="http://www.python.org/dev/peps/pep-0342/" rel="nofollow">PEP 342</a>: "Coroutines are a natural way of expressing many algorithms, such as simulations, games...") but I'm having a hard time wrapping my head around how this would actually be done.</p> <p>I see from this <a href="http://www.ibm.com/developerworks/library/l-pygen.html" rel="nofollow">article</a> that coroutines can represent states in a state machine which transition to each other using a scheduler, but it's not clear to me how this applies to a game where the game state is changing based on moves from multiple players.</p> <p>Is there any simple example of a game written using coroutines available? Or can someone offer a sketch of how it might be done?</p> http://stackoverflow.com/questions/758088/seeking-contrived-example-code-continuations 3 Seeking contrived example code: continuations! J Cooper 2009-04-16T21:14:54Z 2009-04-17T17:33:14Z <p>So I believe I understand continuations now, at least on some level, thanks to the <a href="http://community.schemewiki.org/?call-with-current-continuation" rel="nofollow">community scheme wiki</a> and <a href="http://www.ccs.neu.edu/home/dorai/t-y-scheme/t-y-scheme-Z-H-15.html#node%5Fchap%5F13" rel="nofollow">Learn Scheme in Fixnum Days</a>.</p> <p>But I'd like more practice -- that is, more example code I can work through in my head (preferably contrived, so there's not extraneous stuff to distract from the concept).</p> <p><strong>Specifically</strong>, I'd like to work through more problems with continuations that resume and/or coroutines, as opposed to just using them to exit a loop or whatever (which is fairly straightforward).</p> <p>Anyway, if you know of good tutorials besides the ones I linked above, or if you'd care to post something you've written that would be a good exercise, I'd be very appreciative!</p> http://stackoverflow.com/questions/715758/coroutine-vs-continuation-vs-generator 8 Coroutine vs Continuation vs Generator Mehdi Asgari 2009-04-03T21:19:20Z 2009-04-16T09:08:17Z <p>What is the difference between a coroutine and a continuation and a generator ?</p> http://stackoverflow.com/questions/734638/language-that-supports-serializing-coroutines 0 Language that supports serializing coroutines Joseph Kingry 2009-04-09T15:04:47Z 2009-04-09T18:25:44Z <p>I don't think such support exists in current languages. I think what I want to do could be solved by a "workflow engine". But the problem I have with workflow's is generally they are:</p> <ol> <li>Declarative/verbose and I find a imperative style much more succinct</li> <li>Heavyweight, I'll have a lot of simple though diverse little state machines</li> </ol> <p>I've investigated <a href="http://stackoverflow.com/questions/321827/serializing-anonymous-delegates-in-c">serializing iterators in C#</a> but that doesn't get me exactly where I want to be. I'm current looking at putting together a DSL in <a href="http://boo.codehaus.org/" rel="nofollow">Boo</a> but not sure if I'll be able to get coroutine-like behaviour into Boo, and be able to serialize it as well. </p> <h2>Example</h2> <p>Here is limited fictional example of what I'd like to do. The main issue is that at any point in a routine you may need to get user input. The time between inputs could be very long so the state of service will need to be serialized to disk. </p> <pre><code> def RunMachine(user) var lever = user.ChooseLever() lever.Pull() var device = CreateDevice(user) machine.Add(device) machine.Run() def CreateDevice(user) var color = user.ChooseColor() var shape = user.ChooseShape() return Device(color, shape) </code></pre> <p>Ideas?</p> http://stackoverflow.com/questions/685046/is-it-safe-to-yield-from-within-a-with-block-in-python-and-why 8 Is it safe to yield from within a "with" block in Python (and why)? cdleary 2009-03-26T09:24:56Z 2009-03-26T18:56:11Z <p>The combination of coroutines and resource acquisition seems like it could have some unintended (or unintuitive) consequences.</p> <p>The basic question is whether or not something like this works:</p> <pre><code>def coroutine(): with open(path, 'r') as fh: for line in fh: yield line </code></pre> <p>Which it does. (You can test it!)</p> <p>The deeper concern is that <code>with</code> is supposed to be something an alternative to <code>finally</code>, where you ensure that a resource is released at the end of the block. Coroutines can suspend and resume execution from <em>within</em> the <code>with</code> block, so <strong>how is the conflict resolved?</strong></p> <p>For example, if you open a file with read/write both inside and outside a coroutine while the coroutine hasn't yet returned:</p> <pre><code>def coroutine(): with open('test.txt', 'rw+') as fh: for line in fh: yield line a = coroutine() assert a.next() # Open the filehandle inside the coroutine first. with open('test.txt', 'rw+') as fh: # Then open it outside. for line in fh: print 'Outside coroutine: %r' % repr(line) assert a.next() # Can we still use it? </code></pre> <h3>Update</h3> <p>I was going for write-locked file handle contention in the previous example, but since most OSes allocate filehandles per-process there will be no contention there. (Kudos to @Miles for pointing out the example didn't make too much sense.) Here's my revised example, which shows a real deadlock condition:</p> <pre><code>import threading lock = threading.Lock() def coroutine(): with lock: yield 'spam' yield 'eggs' generator = coroutine() assert generator.next() with lock: # Deadlock! print 'Outside the coroutine got the lock' assert generator.next() </code></pre> http://stackoverflow.com/questions/553704/what-is-coroutine 3 What is coroutine? yesraaj 2009-02-16T15:36:43Z 2009-02-16T21:35:05Z <p>What is coroutine? How is it related to concurrency?</p> http://stackoverflow.com/questions/303760/what-are-use-cases-for-a-coroutine 5 What are use-cases for a coroutine? Mnementh 2008-11-19T23:14:35Z 2009-02-04T18:20:32Z <p>The concept of a <a href="http://en.wikipedia.org/wiki/Coroutine" rel="nofollow">coroutine</a> sounds very interesting, but I don't know, if it makes sense in a real productive environment? What are use-cases for coroutines, that can be solved more elegant, simpler or more efficient as with other methods?</p>