active questions tagged coroutine - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:21:14Zhttp://stackoverflow.com/feeds/tag/coroutinehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1718173/differences-between-coroutines-and-goto3Differences between Coroutines and GoTo???mRt2009-11-11T21:22:23Z2009-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-routines4Python generators and co-routines.shafik232009-02-19T05:35:09Z2009-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-coroutines6Design Pattern Alternative to Coroutinesjameszhao002009-08-23T19:24:25Z2009-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-store0Mono Continuations - Memory keeps increasing after store()jameszhao002009-08-25T22:39:25Z2009-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->saved_stack && num_bytes <= cont->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->domain)
*e = mono_get_exception_argument ("cont", "Continuation not initialized");
if (cont->domain != mono_domain_get () || cont->thread_id != GetCurrentThreadId ())
*e = mono_get_exception_argument ("cont", "Continuation from another thread or domain");
cont->lmf = lmf;
cont->return_ip = __builtin_return_address (0);
cont->return_sp = __builtin_frame_address (0);
num_bytes = (char*)cont->top_sp - (char*)cont->return_sp;
/*g_print ("store: %d bytes, sp: %p, ip: %p, lmf: %p\n", num_bytes, cont->return_sp, cont->return_ip, lmf);*/
if (cont->saved_stack && num_bytes <= cont->stack_alloc_size)
{
/* clear to avoid GC retention */
if (num_bytes < cont->stack_used_size)
memset ((char*)cont->saved_stack + num_bytes, 0, cont->stack_used_size - num_bytes);
}
else
{
tasklets_lock ();
internal_init ();
if (cont->saved_stack) {
mono_g_hash_table_remove (keepalive_stacks, cont->saved_stack);
mono_gc_free_fixed (cont->saved_stack);
}
cont->stack_used_size = num_bytes;
cont->stack_alloc_size = num_bytes * 1.1;
cont->saved_stack = mono_gc_alloc_fixed (cont->stack_alloc_size, NULL);
mono_g_hash_table_insert (keepalive_stacks, cont->saved_stack, cont->saved_stack);
tasklets_unlock ();
}
memcpy (cont->saved_stack, cont->return_sp, num_bytes);
return state;
}
</code></pre>
http://stackoverflow.com/questions/1290051/overhead-of-mono-tasklet-co-routines2Overhead of Mono Tasklet/Co-Routinesjameszhao002009-08-17T19:52:31Z2009-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 < 10000; i++)
{
MicroThread t1 = new MicroThread(Run1);
t1.Start();
}
Scheduler.Run();
Console.WriteLine("starting raw loop.,..");
int x = 2;
for (int i = 0; i < 10000 * 400; i++ )
{
x++;
}
Console.WriteLine("1finished.,.. " + x.ToString());
Console.ReadLine();
}
static void Run1()
{
for (int y = 0; y < 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-design6Coroutines for game design?Kiv2009-08-08T03:31:01Z2009-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-continuations3Seeking contrived example code: continuations!J Cooper2009-04-16T21:14:54Z2009-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-generator8Coroutine vs Continuation vs GeneratorMehdi Asgari2009-04-03T21:19:20Z2009-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-coroutines0Language that supports serializing coroutines Joseph Kingry2009-04-09T15:04:47Z2009-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-why8Is it safe to yield from within a "with" block in Python (and why)?cdleary2009-03-26T09:24:56Z2009-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-coroutine3What is coroutine?yesraaj2009-02-16T15:36:43Z2009-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-coroutine5What are use-cases for a coroutine?Mnementh2008-11-19T23:14:35Z2009-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>