##// END OF EJS Templates
Finishing the index files.
Finishing the index files.

File last commit:

r16111:7c677477
r16118:61d31e5b
Show More
Cython Magics.ipynb
277 lines | 7.2 KiB | text/plain | TextLexer
Brian Granger
Adding Cython extension and example notebook.
r7031 {
"metadata": {
Brian Granger
First go and reorganizing the examples.
r9191 "name": "Cython Magics"
Brian Granger
Adding Cython extension and example notebook.
r7031 },
"nbformat": 3,
MinRK
rebuild example notebooks...
r7739 "nbformat_minor": 0,
Brian Granger
Adding Cython extension and example notebook.
r7031 "worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
Brian Granger
More changes to example notebooks.
r9193 "Cython Magic Functions"
Brian Granger
Adding Cython extension and example notebook.
r7031 ]
},
{
"cell_type": "heading",
"level": 2,
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"Loading the extension"
]
},
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"IPtyhon has a `cythonmagic` extension that contains a number of magic functions for working with Cython code. This extension can be loaded using the `%load_ext` magic as follows:"
]
},
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
"%load_ext cythonmagic"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"The %cython_inline magic"
]
},
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"The `%%cython_inline` magic uses `Cython.inline` to compile a Cython expression. This allows you to enter and run a function body with Cython code. Use a bare `return` statement to return values. "
]
},
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
Fernando Perez
Update example notebook with new flags.
r7421 "a = 10\n",
Brian Granger
Adding Cython extension and example notebook.
r7031 "b = 20"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 2
Brian Granger
Adding Cython extension and example notebook.
r7031 },
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
Fernando Perez
Update example notebook with new flags.
r7421 "%%cython_inline\n",
Brian Granger
Adding Cython extension and example notebook.
r7031 "return a+b"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [
{
"output_type": "pyout",
MinRK
rebuild example notebooks...
r7739 "prompt_number": 3,
Brian Granger
Adding Cython extension and example notebook.
r7031 "text": [
"30"
]
}
],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 3
Brian Granger
Adding Cython extension and example notebook.
r7031 },
{
"cell_type": "heading",
"level": 2,
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"The %cython_pyximport magic"
]
},
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"The `%%cython_pyximport` magic allows you to enter arbitrary Cython code into a cell. That Cython code is written as a `.pyx` file in the current working directory and then imported using `pyximport`. You have the specify the name of the module that the Code will appear in. All symbols from the module are imported automatically by the magic function."
]
},
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
Fernando Perez
Update example notebook with new flags.
r7421 "%%cython_pyximport foo\n",
"def f(x):\n",
Brian Granger
Adding Cython extension and example notebook.
r7031 " return 4.0*x"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 4
Brian Granger
Adding Cython extension and example notebook.
r7031 },
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
"f(10)"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [
{
"output_type": "pyout",
MinRK
rebuild example notebooks...
r7739 "prompt_number": 5,
Brian Granger
Adding Cython extension and example notebook.
r7031 "text": [
"40.0"
]
}
],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 5
Brian Granger
Adding Cython extension and example notebook.
r7031 },
{
"cell_type": "heading",
"level": 2,
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
"The %cython magic"
]
},
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "source": [
Fernando Perez
Update example notebook with new flags.
r7421 "Probably the most important magic is the `%cython` magic. This is similar to the `%%cython_pyximport` magic, but doesn't require you to specify a module name. Instead, the `%%cython` magic uses manages everything using temporary files in the `~/.cython/magic` directory. All of the symbols in the Cython module are imported automatically by the magic.\n",
"\n",
Bradley M. Froehle
Add note to `%cython` Black-Scholes example warning of missing erf.
r8964 "Here is a simple example of a Black-Scholes options pricing algorithm written in Cython. Please note that this example might not compile on non-POSIX systems (e.g., Windows) because of a missing `erf` symbol."
Brian Granger
Adding Cython extension and example notebook.
r7031 ]
},
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
Fernando Perez
Update example notebook with new flags.
r7421 "%%cython\n",
"cimport cython\n",
"from libc.math cimport exp, sqrt, pow, log, erf\n",
"\n",
"@cython.cdivision(True)\n",
"cdef double std_norm_cdf(double x) nogil:\n",
" return 0.5*(1+erf(x/sqrt(2.0)))\n",
"\n",
"@cython.cdivision(True)\n",
"def black_scholes(double s, double k, double t, double v,\n",
" double rf, double div, double cp):\n",
" \"\"\"Price an option using the Black-Scholes model.\n",
" \n",
" s : initial stock price\n",
" k : strike price\n",
" t : expiration time\n",
" v : volatility\n",
" rf : risk-free rate\n",
" div : dividend\n",
" cp : +1/-1 for call/put\n",
" \"\"\"\n",
" cdef double d1, d2, optprice\n",
" with nogil:\n",
" d1 = (log(s/k)+(rf-div+0.5*pow(v,2))*t)/(v*sqrt(t))\n",
" d2 = d1 - v*sqrt(t)\n",
" optprice = cp*s*exp(-div*t)*std_norm_cdf(cp*d1) - \\\n",
" cp*k*exp(-rf*t)*std_norm_cdf(cp*d2)\n",
Brian Granger
Adding Cython extension and example notebook.
r7031 " return optprice"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [],
"prompt_number": 6
},
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
"black_scholes(100.0, 100.0, 1.0, 0.3, 0.03, 0.0, -1)"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [
{
"output_type": "pyout",
"prompt_number": 7,
"text": [
"10.327861752731728"
]
}
],
"prompt_number": 7
},
{
"cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
"%timeit black_scholes(100.0, 100.0, 1.0, 0.3, 0.03, 0.0, -1)"
],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Brian Granger
Adding Cython extension and example notebook.
r7031 "outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
MinRK
rebuild example notebooks...
r7739 "1000000 loops, best of 3: 821 ns per loop\n"
Brian Granger
Adding Cython extension and example notebook.
r7031 ]
}
],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 8
Brian Granger
Adding Cython extension and example notebook.
r7031 },
{
Brian Granger
More changes to example notebooks.
r9193 "cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"External libraries"
]
},
{
Fernando Perez
Update example notebook with new flags.
r7421 "cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Fernando Perez
Update example notebook with new flags.
r7421 "source": [
Fernando Perez
Use -I (capital) to match gcc stle and show -l usage without spaces.
r7422 "Cython allows you to specify additional libraries to be linked with your extension, you can do so with the `-l` flag (also spelled `--lib`). Note that this flag can be passed more than once to specify multiple libraries, such as `-lm -llib2 --lib lib3`. Here's a simple example of how to access the system math library:"
Fernando Perez
Update example notebook with new flags.
r7421 ]
},
{
Brian Granger
Adding Cython extension and example notebook.
r7031 "cell_type": "code",
MinRK
rebuild example notebooks...
r7739 "collapsed": false,
Brian Granger
Adding Cython extension and example notebook.
r7031 "input": [
Fernando Perez
Use -I (capital) to match gcc stle and show -l usage without spaces.
r7422 "%%cython -lm\n",
Fernando Perez
Update example notebook with new flags.
r7421 "from libc.math cimport sin\n",
"print 'sin(1)=', sin(1)"
Brian Granger
Adding Cython extension and example notebook.
r7031 ],
"language": "python",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Fernando Perez
Update example notebook with new flags.
r7421 "outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"sin(1)= 0.841470984808\n"
]
}
],
MinRK
rebuild example notebooks...
r7739 "prompt_number": 9
Fernando Perez
Update example notebook with new flags.
r7421 },
{
"cell_type": "markdown",
MinRK
rebuild example notebooks...
r7739 "metadata": {},
Fernando Perez
Update example notebook with new flags.
r7421 "source": [
Fernando Perez
Use -I (capital) to match gcc stle and show -l usage without spaces.
r7422 "You can similarly use the `-I/--include` flag to add include directories to the search path, and `-c/--compile-args` to add extra flags that are passed to Cython via the `extra_compile_args` of the distutils `Extension` class. Please see [the Cython docs on C library usage](http://docs.cython.org/src/tutorial/clibraries.html) for more details on the use of these flags."
Fernando Perez
Update example notebook with new flags.
r7421 ]
Brian Granger
Adding Cython extension and example notebook.
r7031 }
MinRK
rebuild example notebooks...
r7739 ],
"metadata": {}
Brian Granger
Adding Cython extension and example notebook.
r7031 }
]
}