Author: Maciej Fijalkowski <[email protected]> Branch: extradoc Changeset: r3813:e8cbd2447ca4 Date: 2011-06-30 11:52 +0200 http://bitbucket.org/pypy/extradoc/changeset/e8cbd2447ca4/
Log: slow work on slides diff --git a/talk/ctpug2011/Makefile b/talk/ctpug2011/Makefile --- a/talk/ctpug2011/Makefile +++ b/talk/ctpug2011/Makefile @@ -5,7 +5,7 @@ # https://sourceforge.net/tracker/?func=detail&atid=422032&aid=1459707&group_id=38414 talk.pdf: talk.rst author.latex title.latex stylesheet.latex - rst2beamer.py --stylesheet=stylesheet.latex --documentoptions=14pt talk.rst talk.latex || exit + rst2beamer.py --input-encoding=utf-8 --output-encoding=utf-8 --stylesheet=stylesheet.latex --documentoptions=14pt talk.rst talk.latex || exit sed 's/\\date{}/\\input{author.latex}/' -i talk.latex || exit sed 's/\\maketitle/\\input{title.latex}/' -i talk.latex || exit pdflatex talk.latex || exit diff --git a/talk/ctpug2011/author.latex b/talk/ctpug2011/author.latex --- a/talk/ctpug2011/author.latex +++ b/talk/ctpug2011/author.latex @@ -1,8 +1,8 @@ \definecolor{rrblitbackground}{rgb}{0.0, 0.0, 0.0} -\title[PyPy training session]{PyPy training session} -\author[antocuni, arigo] -{Antonio Cuni \\ Armin Rigo} +\title[PyPy hands on]{PyPy hands on} +\author[fijal] +{Maciej Fijałkowski} -\institute{EuroPython 2011} -\date{June 20 2011} +\institute{Cape Town PUG 2011} +\date{June 30 2011} diff --git a/talk/ctpug2011/talk.rst b/talk/ctpug2011/talk.rst --- a/talk/ctpug2011/talk.rst +++ b/talk/ctpug2011/talk.rst @@ -1,22 +1,30 @@ .. include:: beamerdefs.txt ================================ -PyPy training session +PyPy hands on ================================ -PyPy training session +PyPy hands on --------------------- -- Part 1: Run your application under PyPy +* What is PyPy (briefly)? -- Part 2: Write your own interpreter with PyPy +* How to use it? +* How does it work? -Part 1 ------- +* How to analyse performance? -* Run your application under PyPy +What is PyPy +------------ +* A python interpreter + +|pause| + +* Features speed + +* Together with a fully transparent JIT compiler How to run PyPy ---------------- @@ -98,6 +106,14 @@ * ``finally`` inside generators +How the python interpreter works +-------------------------------- + +* compiles down to bytecode + +* executes it one intruction at a time + +* (PyPy, Psyco) compiles it further down to assembler Just-in-Time Compilation _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
