Version 25 (modified by hartono, 15 years ago) (diff) |
---|
ORIO
An annotation-based performance optimization tool
Overview
Orio is an extensible annotation system, implemented in Python, that aims at improving both performance and productivity by enabling software developers to insert annotations into their source code (in C/C++) that trigger a number of low-level performance optimizations on a specified code fragment. The tool generates many tuned versions of the same operation using different optimization parameters, and performs an empirical search for selecting the best among multiple optimized code variants.
Download
Software Requirements
Python, which is already available in any Linux/Unix? distribution. Orio has successfully been tested with Python 2.5.1 (or any later version).
Quick Installation
The Orio installation follows the standard Python Module Distribution Utilities, or Disutils for short.
For users who want to quickly install Orio to the standard locations of third-party Python modules (requiring superuser privileges in a Unix system), the installation is straightforward as shown below.
% tar -xvzf orio.tar.gz % cd orio % python setup.py install
On a Unix platform, the above install command will normally put an orcc script in the /usr/bin location, and also create an orio module directory in the /usr/lib/python2.X/site-packages location.
To test whether Orio has been properly installed in your system, try to execute orcc command as given below as an example.
% orcc --help description: compile shell for Orio usage: orcc [options] <ifile> <ifile> input file containing the annotated code options: -h, --help display this message -o <file>, --output=<file> place the output to <file> -v, --verbose verbosely show details of the results of the running program
In order to install Orio to an alternate location, users need to supply a base directory for the installation. For instance, the following command will install an orcc script under /home/username/bin, and also put an orio module under /home/username/lib/python/site-packages.
% tar -xvzf orio.tar.gz % cd orio % python setup.py install --prefix=/home/username
It is also important to ensure that the installed Orio module location is included in the PYTHONPATH environment variable. Similarly, users can optionally include the installed orcc script location in the PATH shell variable. To do this for the above example, the following two lines can be added in the .bashrc configuration file (assuming the user uses Bash shell, of course).
export PYTHONPATH=$PYTHONPATH:/home/username/lib/python/site-packages export PATH=$PATH:/home/username/bin
Orio Framework
The picture shown below depicts at a high level the structure and the optimization process of the Orio framework.
As the simplest case, Orio can be used to speed up code performance by performing a source-to-source transformation such as loop unrolling and memory alignment optimizations. First, Orio takes a C/C++ code as input, which contains syntactically structured comments utilized to express various performance-tuning directives. Orio scans the annotated input code and extracts all annotation regions. Each annotation region is then passed to the code transformation modules for potential optimizations. Next, the code generator produces the final code with various optimizations being applied.
Furthermore, Orio can also be used as an automatic performance tuning tool. The system uses its code transformation modules and code generator to generate an optimized code version for each distinct combination of performance parameters. And then, the optimized code version is empirically executed and measured for its performance, which is subsequently compared to the performances of other previously tested code variants. After iteratively evaluating all code variants under consideration, the best-performing code is generated as the final output of Orio.
Because the space of all possible optimized code versions can be exponentially large, an exhaustive exploration of the search space becomes impractical. Therefore, several search heuristics are implemented in the search engine component to find a code variant with near-optimal performance.
The tuning specifications, written by users in the form of annotations, are parsed and used by Orio to guide the search and tuning process. These specifications include important information such as the underlying machine characteristics, the used compilers, the search strategy, the transformation parameters, the input data size, and so on.
Documentations
- The Orio Framework?
- Using the Code Transformation Modules?
- Using Empirical Performance Tuner?
- Extending Orio?
- Performance Study?
Papers
- Boyana Norris, Albert Hartono, and William Gropp. "Annotations for Productivity and Performance Portability," in Petascale Computing: Algorithms and Applications. Computational Science. Chapman & Hall / CRC Press, Taylor and Francis Group, 2007. Preprint ANL/MCS-P1392-0107. (bib, pdf)
Attachments
- anl_logo.jpg (15.3 KB) - added by hartono 15 years ago.
- osu_logo.png (57.9 KB) - added by hartono 15 years ago.
- orio-framework.jpg (25.1 KB) - added by hartono 15 years ago.
- orio_logo.jpg (15.3 KB) - added by hartono 15 years ago.