##// END OF EJS Templates
Moving files to top level.
Moving files to top level.

File last commit:

r16110:13eabb4f
r16112:43623688
Show More
task1.ipynb
140 lines | 2.6 KiB | text/plain | TextLexer
Brian E. Granger
Converting notebooks to JSON format.
r4634 {
Brian Granger
Updating example notebooks to v3 format.
r6035 "metadata": {
"name": "task1"
},
"nbformat": 3,
MinRK
rebuild example notebooks...
r7739 "nbformat_minor": 0,
Brian Granger
Updating example notebooks to v3 format.
r6035 "worksheets": [
{
"cells": [
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "source": [
"# Simple task farming example"
]
},
{
"cell_type": "code",
"collapsed": true,
"input": [
Thomas Kluyver
Update parallel example notebooks for Python 3
r13997 "from __future__ import print_function\n",
Brian Granger
Updating example notebooks to v3 format.
r6035 "from IPython.parallel import Client"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 1
Brian Granger
Updating example notebooks to v3 format.
r6035 },
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "source": [
"A `Client.load_balanced_view` is used to get the object used for working with load balanced tasks."
]
},
{
"cell_type": "code",
"collapsed": true,
"input": [
MinRK
rebuild example notebooks...
r7739 "rc = Client()\n",
Brian Granger
Updating example notebooks to v3 format.
r6035 "v = rc.load_balanced_view()"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 2
Brian Granger
Updating example notebooks to v3 format.
r6035 },
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "source": [
"Set the variable `d` on all engines:"
]
},
{
"cell_type": "code",
"collapsed": true,
"input": [
"rc[:]['d'] = 30"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 3
Brian Granger
Updating example notebooks to v3 format.
r6035 },
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "source": [
"Define a function that will be our task:"
]
},
{
"cell_type": "code",
"collapsed": true,
"input": [
MinRK
rebuild example notebooks...
r7739 "def task(a):\n",
Brian Granger
Updating example notebooks to v3 format.
r6035 " return a, 10*d, a*10*d"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 4
Brian Granger
Updating example notebooks to v3 format.
r6035 },
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "source": [
"Run the task once:"
]
},
{
"cell_type": "code",
"collapsed": true,
"input": [
"ar = v.apply(task, 5)"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 5
Brian Granger
Updating example notebooks to v3 format.
r6035 },
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "source": [
"Print the results:"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
Thomas Kluyver
Update parallel example notebooks for Python 3
r13997 "print(\"a, b, c: \", ar.get())"
Brian Granger
Updating example notebooks to v3 format.
r6035 ],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Updating example notebooks to v3 format.
r6035 "outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
MinRK
rebuild example notebooks...
r7739 "a, b, c: [5, 300, 1500]\n"
Brian Granger
Updating example notebooks to v3 format.
r6035 ]
}
],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 6
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
Brian Granger
Updating example notebooks to v3 format.
r6035 }
MinRK
rebuild example notebooks...
r7739 ],
"metadata": {}
Brian Granger
Updating example notebooks to v3 format.
r6035 }
]
Brian E. Granger
Converting notebooks to JSON format.
r4634 }