2–9 Sept 2007
Victoria, Canada
Europe/Zurich timezone
Please book accomodation as soon as possible.

Optimizations in Python-based HEP Analysis

6 Sept 2007, 15:00
20m
Lecture (Victoria, Canada)

Lecture

Victoria, Canada

oral presentation Software components, tools and databases Software components, tools and databases

Speaker

Dr Sebastien Binet (LBNL)

Description

Python does not, as a rule, allow many optimizations, because there are too many things that can change dynamically. However, a lot of HEP analysis work consists of logically immutable blocks of code that are executed many times: looping over events, fitting data samples, making plots. In fact, most parallelization relies on this. There is therefore room for optimizations. There are many open source tools available to optimize python code. However, all of them stop short of dealing with calls into extension libraries, which is a major part of any Python-based HEP analysis. The typical extension library in HEP is written in object-oriented C++ code, and used through interface pointers. In the analysis code, these pointers are then used to call specific functionality (e.g. to retrieve data), as well as simply passed around (e.g. to call a fit on selected data). In both cases, the Python part exists mostly for the convenience to the user in wiring the needed functionality together; it does not add functional code that the C++ extension library needs to be aware of. The natural division in blocks, and the usage of Python as a conduit from C++ to C++, makes HEP analysis code particularly suited to the kind of partial evaluation and specialization techniques used in Psyco (psyco.sourceforge.net). In this paper, I will how this is used to achieve automatic optimizations for HEP libraries bound with PyROOT.
Submitted on behalf of Collaboration (ex, BaBar, ATLAS) ATLAS

Authors

Presentation materials