www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Where can i find examples of multi-threaded fibers?

reply "Gary Willoughby" <dev nomad.so> writes:
In the description for Fiber in std.thread is the following[1]:

"Please note that there is no requirement that a fiber be bound 
to one specific thread. Rather, fibers may be freely passed 
between threads so long as they are not currently executing."

How would this be accomplished and are there any code examples 
available to learn from? I'm assuming this would require a custom 
scheduler similar to the one in std.concurrency?[2]



Jul 26 2015
next sibling parent reply =?UTF-8?B?QWxpIMOHZWhyZWxp?= <acehreli yahoo.com> writes:
On 07/26/2015 11:07 AM, Gary Willoughby wrote:> In the description for 
Fiber in std.thread is the following[1]:
 "Please note that there is no requirement that a fiber be bound to one
 specific thread. Rather, fibers may be freely passed between threads so
 long as they are not currently executing."

 How would this be accomplished and are there any code examples available
 to learn from? I'm assuming this would require a custom scheduler
 similar to the one in std.concurrency?[2]



It should be as simple as sending the fiber object between threads (including casting to-and-from shared when needed). I used std.concurrency.Generator[1][2] below instead of a naked Fiber as it is much more cleaner. main() uses the fiber then passes it to its worker and continues using it again: import std.stdio; import std.range; import std.algorithm; import std.concurrency; import core.thread; void fiberFunction() { 10.iota.each!(i => yield(i)); } void threadFunction() { auto fiber = cast()receiveOnly!(shared(Generator!int)); writefln("Produced in worker: %(%s %)", fiber.take(5)); } void main() { auto numbers = new Generator!int(&fiberFunction); auto worker = spawn(&threadFunction); writefln("Produced in main : %(%s %)", numbers.take(2)); worker.send(cast(shared)numbers); thread_joinAll(); writefln("Produced in main : %(%s %)", numbers); } Here is the output: Produced in main : 0 1 Produced in worker: 2 3 4 5 6 Produced in main : 7 8 9 Ali [2] http://ddili.org/ders/d.en/fibers.html#ix_fibers.Generator,%20std.concurrency
Jul 26 2015
parent "Gary Willoughby" <dev nomad.so> writes:
On Sunday, 26 July 2015 at 19:51:08 UTC, Ali Çehreli wrote:
 On 07/26/2015 11:07 AM, Gary Willoughby wrote:> In the
Thanks for the example. I'll study it.
Jul 26 2015
prev sibling parent reply "Marc =?UTF-8?B?U2Now7x0eiI=?= <schuetzm gmx.net> writes:
On Sunday, 26 July 2015 at 18:07:51 UTC, Gary Willoughby wrote:
 In the description for Fiber in std.thread is the following[1]:

 "Please note that there is no requirement that a fiber be bound 
 to one specific thread. Rather, fibers may be freely passed 
 between threads so long as they are not currently executing."

 How would this be accomplished and are there any code examples 
 available to learn from? I'm assuming this would require a 
 custom scheduler similar to the one in std.concurrency?[2]


 [2]: 

There was a long discussion about this a few weeks ago, and IIRC the outcome was that we shouldn't allow it, because it breaks the type system.
Jul 27 2015
parent reply "Gary Willoughby" <dev nomad.so> writes:
On Monday, 27 July 2015 at 08:00:10 UTC, Marc Schütz wrote:
 On Sunday, 26 July 2015 at 18:07:51 UTC, Gary Willoughby wrote:
 In the description for Fiber in std.thread is the following[1]:

 "Please note that there is no requirement that a fiber be 
 bound to one specific thread. Rather, fibers may be freely 
 passed between threads so long as they are not currently 
 executing."

 How would this be accomplished and are there any code examples 
 available to learn from? I'm assuming this would require a 
 custom scheduler similar to the one in std.concurrency?[2]


 [2]: 

There was a long discussion about this a few weeks ago, and IIRC the outcome was that we shouldn't allow it, because it breaks the type system.
Where is the discussion?
Jul 27 2015
parent "Rob T" <alanb ucora.com> writes:
On Monday, 27 July 2015 at 18:30:06 UTC, Gary Willoughby wrote:
 Where is the discussion?
This must be it http://forum.dlang.org/thread/pflkijjjuyyhextxvdnn forum.dlang.org I'm interested in the same subject right now, and was wondering about the same question you asked.
Jul 28 2015