Re: [Chicken-users] [Chicken-hackers] happy christmas!

2016-12-24 Thread Arthur Maciel
Merry Christmas, folks!

Em 24 de dez de 2016 11:00, "Hugo Arregui" 
escreveu:

> On 2016-12-23 06:36, felix.winkelm...@bevuta.com wrote:
>
>> Dear CHICKEN folks!
>>
>>
>> I wish all of you a very happy christmas.
>>
>
>
> Merry Christmas everyone!
>
> ___
> Chicken-users mailing list
> Chicken-users@nongnu.org
> https://lists.nongnu.org/mailman/listinfo/chicken-users
>
___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] [Chicken-hackers] happy christmas!

2016-12-24 Thread Hugo Arregui

On 2016-12-23 06:36, felix.winkelm...@bevuta.com wrote:

Dear CHICKEN folks!


I wish all of you a very happy christmas.



Merry Christmas everyone!

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Parallel procedures in CHICKEN

2016-12-24 Thread Kooda
On Sat, 24 Dec 2016 02:11:37 -0200
Arthur Maciel  wrote:
> Is there a way to implement map, for-each and other procedures in a
> parallel way so
> 
> (use srfi-1)
> (map (lambda (x) (+ x 1)) (iota 100)
> 
> would automatically split the list into smaller lists according to the
> number of CPU cores and then gather the results back?

I guess you could spawn a process pool and send these processes a thunk
that calculates their part and send back the result. You could use s11n
egg for that, I believe.

I’m not sure it would be faster than the regular functions though.

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users