What customers say ...
Mike is an outstanding teacher ... I will look for his classes in the future.
Jennifer Trasti, Software/Systems Engineer, Sandia National Laboratories, Albuquerque, NM, USA more...
Good course. Very fast progress without any prior Python knowledge.
Daniel Fuchs, GIGATRONIK Ingolstadt GmbH, about the German version of the course "Python for Programmers" more...
The Python Summer Course was a very good opportunity to know almost all about Python. ... Highly recommended!!
Dr. Fabio Lamanna, Complex Transportation Networks, Trieste, Italy more...
Very nice course, got many useful suggestions.
Dr.-Ing. Ralf Wieland, Institut für Landschaftssystemanalyse, Leibniz-Zentrum für Agrarlandschaftsforschung e.V. about the German version of the course "Python for Scientists and Engineers" more...
The course "Python for Scientists and Engineers" is a very useful introduction to Python programming for scientific applications ...
Dr. Mihai Duta, Oxford Supercomputing Centre, UK more...
Module - Optimizing Python Programs
Motivation
Python is an interpreted language; Python source code is translate into portable byte code. This concept in combination with other design principles of Python makes many of advantages as compared to other languages possible. As a drawback the execution speed my be considerably slower for certain kinds of applications than with compiled languages. Optimization can often increase performance of Python programs substantially.
Course Content
Guidelines for Optimization
Python programs are not principally slow. On the contrary: the execution speed is sufficient for many application. The basic question is if the program serves its intended purpose. Furthermore, other factors such as database access or network connections may determine the speed of the application.
The course provides important guidelines for optimization.
Optimization Strategies
The concept of benchmarking with pystone is introduced with examples for different Python implementations. Profiling of CPU usage can be used to find the spots of a program that use up most of the program run time. The built-in module cProfile is used in the course. Examples of common cases will help to understand how to use them. Memory usage will be measured with the heapy module from the Guppy_PE framework. Different possibilities of its usage are explored with examples.
Participants are encouraged to bring their own programs for profiling to the course.
Algorithms and Anti-Patterns
Typically the larges gains of performance can be achieved through algorithmic changes.
Algorithms that are especially slow or fast in Python are shown. We look at string concatenation and we use generators to minimize memory usage.
The Right Data Structure
The data structure can have significant impact on execution speed. We look at the built-in data structures compare lists, sets, deque and defaultdict. The big-O notation will be exemplified.
Caching
Caching can be a useful strategy to reduce run times. We look at deterministic and non-deterministic caching and develop decorates for these purposes.
The Example
We use a computationally demanding example and implement it first in pure Python. We look at some algorithmic improvements to speed up the computation.
Testing Speed
Measuring how fast a program really run is no simple task. We look at solutions to this problem in Python.
Psyco
Psyco is a so called "just-in-time-complier" (JIT), which allows to translate parts of the byte code to machine code. This may yield considerable speed improvements.
Examples are used to show the different possibilities of using Psyco. Participants are encouraged to bring their own programs to the course to optimize them.
Numerical Calculations with NumPy
Numerical calculations using large list are rather slow in Python. The dynamical typing can use up lots of performance. The library NumPy offers efficient processing of numerical arrays. Functionality and usage are inspired by MATLAB.
The basic possibilities of NumPy are covered in the course.
Using Multiple CPUs with pyprocessing/multiprocessing
The module pyprocessing is, renamed as multiprocessing part of the standard library of Python 2.6. It allows to take advantage of multiprocessor CPUs. We will have a short tour through the module and apply it to our example.
Combination of Optimization Strategies
We combine several of the strategies to get the maximum speed up.
Overview of Extensions to Python with Other Languages
The speed of Python programs can be increased through extensions written in other languages. An overview of possibilities to extend Python are given if this module is not combined with the module Python-Extensions with Other Languages.
Module Duration
1 day
Exercises
The participants can follow all steps directly on their computers. There are exercises at the end of each unit providing ample opportunity to apply the freshly learned knowledge.
Course Material
Every participant receives comprehensive printed materials that cover the whole course content as wells as a CD with all source codes and used software.
Recommended Module Combinations
The module Python-Extensions with Other Languages covers supplementary topics. The course Python for Scientists and Engineers might also be of interest.
The course may be combined with the course Python for Nonprogrammers or Python for Programmers.
The Python Academy is sponsor of EuroPython 2013.
The Python Academy is sponsor of Python BarCamp Köln.
The Python Academy is sponsor of PyCon US 2013.
The Python Academy is sponsor of EuroSciPy 2013.
The Python Academy is sponsor of PyConDE 2012.
The Python Academy is sponsor of PyConPL 2012.
News
The next open cousers
details ...
Python Academy sponsors EuroPython conference 2013
details ...
Python Academy sponsors Python BarCamp in Cologne
details ...
Python Academy sponsors EuroSciPy conference 2013
details ...
Next Meeting of Leipzig Python User Group, May 14, 2013
details ...
Einstieg in Django (German), June 3 - 5, 2013
details ...
Django für Fortgeschrittene (German), June 6 - 8, 2013
details ...
Python for Scientists and Engineers, June 10 - 12, 2013
details ...
Professional Testing with pytest and tox, June 24 - 26, 2013
details ...
Introduction to Django, November 11 - 13, 2013
details ...
Advanced Django, November 14 - 16, 2013
details ...
Python Academy sponsors PyCon US conference 2013
details ...
Python Academy founder receives PSF Community Service Award
details ...