Technical Talks

View All

Weld: Accelerating Data Science by 100x

Shoumik Palkar Shoumik Palkar | Ph.D Student | Stanford University Infolab

Weld is a new open source project from Stanford to accelerate data-intensive applications by as much as 100x. It does so by JIT-compiling parallel code and optimizing across functions within a single library as well as across different libraries, so developers can write modular code and still get close to bare metal performance without incurring expensive data movement costs. Weld uses a common representation to capture the structure of data-parallel workloads such as SQL, machine learning, and graph analytics and then optimizes across them using adaptive optimizer that takes into account hardware characteristics. Weld contains APIs in Python and C, and can be integrated it into a variety of widely used analytics frameworks such as Spark SQL, TensorFlow, and Pandas.

Even though individual functions in these libraries are optimized, the cost of moving data across these functions can cause order of magnitude slowdowns in the whole workflow compared to a tuned implementation written in C. For example, even though TensorFlow uses highly tuned linear algebra functions for each of its operators, workflows that combine these operators can be 16x slower than hand-tuned code. Similarly, workflows that perform relational processing in Spark SQL or Pandas, numerical processing in NumPy, or a combination of these tasks spend much of their time in data movement across processing functions and could run between 2x and 300× faster if optimized end to end.

We demonstrate how Weld can be incrementally integrated into these libraries by porting only the most impactful operators first without breaking compatibility with other operators in the library, and without changing the API of the libraries (so users do not need to change their application code). We also show how Weld speeds up existing workloads in these frameworks by up to 30x and enables speed-ups of two orders of magnitude in applications that combine them. The Weld library and Weld-enabled versions of the Pandas and NumPy libraries are available to download on PyPi. Weld is open source at http://weld.stanford.edu.

Shoumik Palkar
Shoumik Palkar
Ph.D Student | Stanford University Infolab

Shoumik Palkar is a second-year PhD student in the Infolab at Stanford University, working with Matei Zaharia on high-performance data analytics. He holds a degree in electrical engineering and computer science from UC Berkeley.

FEATURED MEETINGS