HPAT Development

Technology Overview and Architecture

This slide deck provides an overview of HPAT technology and software architecture.

These papers provide deeper dive in technical ideas (might not be necessary for many developers):

Numba Development

HPAT sits on top of Numba and is heavily tied to many of its features. Therefore, understanding Numba’s internal details and being able to develop Numba extensions is necessary.

HPAT Development

HPAT implements Pandas and Numpy API as a DSL. Data structures are implemented as Numba extensions, and compiler stages are responsible for different levels of abstraction. For example, Series data type support and Series transformations implement the Pandas Series API. Follow the pipeline for a simple function like Series.sum() for initial understanding of the transformations.