Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #4674 > unrolled thread

Re: [OT]: PiCloud - really cool!

Started bygeremy condra <debatem1@gmail.com>
First post2011-05-04 17:19 -0700
Last post2011-05-04 17:19 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [OT]: PiCloud - really cool! geremy condra <debatem1@gmail.com> - 2011-05-04 17:19 -0700

#4674 — Re: [OT]: PiCloud - really cool!

Fromgeremy condra <debatem1@gmail.com>
Date2011-05-04 17:19 -0700
SubjectRe: [OT]: PiCloud - really cool!
Message-ID<mailman.1175.1304554781.9059.python-list@python.org>
On Wed, May 4, 2011 at 5:13 PM, James Mills
<prologic@shortcircuit.net.au> wrote:
> If anyone hasn't seen this yet, I encourage you to!
> (I stumbled upon it with some random thoughts and Gooogling)
>
> http://www.picloud.com/
>
> Here's a quick test I wrote up that works locally using the simulator
> and live (I did run it live):
>
> #!/usr/bin/env python
>
> import cloud
>
> def fib(n):
>    a, b, = 1, 1
>    while n > 1:
>        a, b = b, a + b
>        n -= 1
>    return b
>
> #cloud.start_simulator()
>
> jobs = cloud.map(fib, range(100))
>
> print [cloud.result(job) for job in jobs]
>
> Enjoy! :)

I was the poster across from them at PyCon two years back. Pretty fun
to play with, although last I checked it was hard to do true HPC on
it.

Geremy Condra

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web