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


Groups > comp.lang.python > #4674

Re: [OT]: PiCloud - really cool!

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <debatem1@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.003
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'subject:: [': 0.03; 'pycon': 0.03; 'skip:# 20': 0.03; 'wed,': 0.04; 'python': 0.07; 'pm,': 0.11; 'def': 0.13; 'wrote:': 0.14; 'cc:name:python list': 0.16; 'poster': 0.16; 'stumbled': 0.16; 'subject:cool': 0.16; 'subject:really': 0.16; '\xa0while': 0.16; "hasn't": 0.19; 'cc:2**0': 0.20; 'header:In-Reply-To:1': 0.22; 'cc:addr:python- list': 0.22; 'checked': 0.25; 'wrote': 0.25; 'skip:# 10': 0.25; 'skip:[ 10': 0.26; 'message-id:@mail.gmail.com': 0.28; 'cloud': 0.29; 'cc:addr:python.org': 0.31; 'subject:]: ': 0.31; 'it.': 0.31; 'random': 0.31; 'anyone': 0.31; 'import': 0.32; 'test': 0.33; 'using': 0.34; 'print': 0.35; 'yet,': 0.35; 'two': 0.37; 'some': 0.37; 'received:209.85': 0.37; 'run': 0.37; 'received:google.com': 0.38; 'pretty': 0.38; 'back.': 0.39; 'received:209': 0.39; 'works': 0.40; 'header:Received:5': 0.40; '2011': 0.62; 'upon': 0.63; 'play': 0.64; 'received:209.85.216.181': 0.68; 'received:mail- qy0-f181.google.com': 0.68; 'subject:!': 0.68; 'with,': 0.73; 'locally': 0.91
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=+Se96e0QC4UspDPpXn+bgoC6c3A3gDxmLGagwP8B368=; b=ojge/WAlNIrQkE6JKEwhKl/dJrDD6OcJEqgkldl0qzMzxmixVGmsNTKk/uXAq8uyoQ ZfXmltKmqFmGuuy2/Th8Lx97389hSei37dan9mCKsCd8EWXHmTxWOL7V+jzBIN8o4Ru3 Nk6+dblmt7ut4JOm3HPovnZRsvG/SkL22/ycM=
DomainKey-Signature a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=kPBdH3yt4wWmU229M7aF5UzTvGfGL5+ByebEbdTi2wij70grUfWNAFmxe9loGIxIIo rDHi9LixWrQ64lhwQIASPXbS+qntdYfVOZmzZGt29Ku9dbE9Gh6XOgTY4wdUjkAXSR9E 5kKzTA/ypu6lh0eVRXKk7GHX3pDC1Q3YTCMI0=
MIME-Version 1.0
In-Reply-To <BANLkTimk2An8md-7cox47RzBGvv-WYUzqg@mail.gmail.com>
References <BANLkTimk2An8md-7cox47RzBGvv-WYUzqg@mail.gmail.com>
Date Wed, 4 May 2011 17:19:38 -0700
Subject Re: [OT]: PiCloud - really cool!
From geremy condra <debatem1@gmail.com>
To James Mills <prologic@shortcircuit.net.au>
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding quoted-printable
Cc python list <python-list@python.org>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.1175.1304554781.9059.python-list@python.org> (permalink)
Lines 34
NNTP-Posting-Host 82.94.164.166
X-Trace 1304554781 news.xs4all.nl 34849 [::ffff:82.94.164.166]:37205
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:4674

Show key headers only | View raw


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

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

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

csiph-web