This site contains documentation for v0.2 of the Intrepydd programming system being developed in the DDARING research project with contributors from Georgia Tech, UIUC, U.Michigan, and USC. Intrepydd is a Python-based domain-specific programming language for data analytics kernels, suitable for ahead-of-time compilation on current and future hardware platforms and accelerators. Intrepydd is not intended for writing complete/main programs. This release (v0.2) contains an implementation of an early version of the Intrepydd language. We welcome feedback from testers of this release; your feedback will influence future enhancements to the Intrepydd language, its implementation, and its documentation.
The primary goal of the Intrepydd v0.2 release is the development of kernels that are amenable to ahead-of-time compilation and can be called from a main program written in Python. As a result, Intrepydd v0.2 is not intended for writing complete/main programs, and has a number of limitations relative to standard Python as summarized below. Many of these limitations will be removed in future releases of Intrepydd. However, all standard Python features can be used in the main program that invokes Intrepydd kernels.
This page summarizes the language features available in Intrepydd v0.2, which only runs on multicore CPU processors; later versions of Intrepydd under development support execution on GPUs and simulators for future hardware.
See the links at the bottom of the Intrepydd README page for additional information, including built-in functions and libraries, Jupyter-based tutorials and the Recommended steps in using the Intrepydd v0.2 release.
Intrepydd v0.2 requires that each Intrepydd function parameter and return value be declared with one of the following data types:
The three Intrepydd data types listed above are inferred automatically for local variables and expressions, based on the type declarations provided for parameters and return values. In some cases, explicit type declarations may be needed for assignment statements by using Python’s PEP 484 type annotation with the “var: Type” syntax. Support for other type annotations, e.g., PEP 526, is deferred to future versions of Intrepydd.
There is a fourth case data type that can be used in Intrepydd code to enable support for sparse matrix computations via wrappers for a subset of CombBLAS library calls:
Intrepydd v0.2 supports the following standard statement types from Python:
In addition, Intrepydd v0.2 supports a parallel for (pfor) loop statement, which is not available in Python. A simple example is as follows:
# Double each element of array A
pfor i in range(A.shape[0]):
temp = 2*A[i]
A[i] = temp
As can be seen from the simple example, sequential for loops that are eligible for parallelization can be converted to parallel loops in Intrepydd by replacing “for” by “pfor”. The main conditions for a loop to be eligible for parallelization are:
2*A[i]
in the above loop is replaced by 2*A[i-1]
, the loop
will no longer be eligible for parallelization since there can be a
race condition between (say) the write of A[0]
in iteration i=0 and
the read of A[0]
in iteration i=1. It is the user’s responsibility to
check this condition.Intrepydd v0.2 supports the following operators, which can be used to create expressions: