weld accelerating data science by 100x
play

Weld: Accelerating Data Science by 100x Shoumik Palkar , James - PowerPoint PPT Presentation

Weld: Accelerating Data Science by 100x Shoumik Palkar , James Thomas, Deepak Narayanan , Pratiksha Thaker, Parimajan Negi, Rahul Palamuttam, Anil Shanbhag*, Holger Pirk**, Malte Schwarzkopf*, Saman Amarasinghe*, Sam Madden*, Matei Zaharia


  1. Weld: Accelerating Data Science by 100x Shoumik Palkar , James Thomas, Deepak Narayanan , Pratiksha Thaker, Parimajan Negi, Rahul Palamuttam, Anil Shanbhag*, Holger Pirk**, Malte Schwarzkopf*, Saman Amarasinghe*, Sam Madden*, Matei Zaharia Stanford DAWN, *MIT CSAIL, **Imperial College London www.weld.rs

  2. Motivation Modern data applications combine many disjoint processing libraries & functions + Great results leveraging work of 1000s of authors

  3. Motivation Modern data applications combine many disjoint processing libraries & functions + Great results leveraging work of 1000s of authors – No optimization across functions

  4. How Bad is This Problem? Growing gap between memory/processing makes traditional way of combining functions worse data = pandas.parse_csv(string) filtered = pandas.dropna(data) avg = numpy.mean(filtered)

  5. How Bad is This Problem? Growing gap between memory/processing makes traditional way of combining functions worse data = pandas.parse_csv(string) filtered = pandas.dropna(data) avg = numpy.mean(filtered)

  6. How Bad is This Problem? Growing gap between memory/processing makes traditional way of combining functions worse data = pandas.parse_csv(string) parse_csv filtered = pandas.dropna(data) avg = numpy.mean(filtered)

  7. How Bad is This Problem? Growing gap between memory/processing makes traditional way of combining functions worse data = pandas.parse_csv(string) parse_csv filtered = pandas.dropna(data) dropna avg = numpy.mean(filtered)

  8. How Bad is This Problem? Growing gap between memory/processing makes traditional way of combining functions worse data = pandas.parse_csv(string) parse_csv filtered = pandas.dropna(data) dropna avg = numpy.mean(filtered) mean

  9. How Bad is This Problem? Growing gap between memory/processing makes traditional way of combining functions worse data = pandas.parse_csv(string) parse_csv filtered = pandas.dropna(data) dropna avg = numpy.mean(filtered) mean Up to 30x slowdowns in NumPy, Pandas, TensorFlow, etc. compared to an optimized C implementation

  10. Data Science Today Data scientists “ pip install ” libraries needed for prototype/get the job done

  11. Data Science Today Data scientists “ pip install ” libraries needed for prototype/get the job done Observe performance issues in pipelines composed of fast data science tools

  12. Data Science Today Data scientists “ pip install ” libraries needed for prototype/get the job done Observe performance issues in pipelines composed of fast data science tools Hire engineers to optimize your pipeline, leverage new hardware, etc.

  13. Data Science Today Data scientists “ pip install ” libraries needed for prototype/get the job done Observe performance issues in pipelines composed of fast data science tools Hire engineers to optimize your pipeline, leverage new hardware, etc. Weld’s vision: bare metal performance for data science out of the box!

  14. Weld: An Optimizing Runtime Runtime [secs; log10] 0.1 1 10 100 Native (1T) No Fusion (1T) No CLO (1T) Weld (1T) Weld (12T) Filter Dataset à Compute a Linear Model à Aggregate Indices Uses NumPy and Pandas (both backed by C )

  15. Weld: An Optimizing Runtime Runtime [secs; log10] 0.1 1 10 100 Native (1T) No Fusion (1T) No CLO (1T) Weld (1T) Weld (12T) Filter Dataset à Compute a Linear Model à Aggregate Indices Native NumPy and Pandas Uses NumPy and Pandas (both backed by C )

  16. Weld: An Optimizing Runtime Runtime [secs; log10] 0.1 1 10 100 Native (1T) No Fusion (1T) No CLO (1T) Weld (1T) Weld (12T) ~ 3x Speedup from code generation Filter Dataset à Compute a Linear Model à Aggregate Indices (SIMD instructions + other standard compiler optimizations) Uses NumPy and Pandas (both backed by C )

  17. Weld: An Optimizing Runtime Runtime [secs; log10] 0.1 1 10 100 Native (1T) No Fusion (1T) No CLO (1T) Weld (1T) Weld (12T) ~ 8x Speedup from fusion within each library Filter Dataset à Compute a Linear Model à Aggregate Indices (eliminates within-library memory movement) Uses NumPy and Pandas (both backed by C )

  18. Weld: An Optimizing Runtime Runtime [secs; log10] 0.1 1 10 100 Native (1T) No Fusion (1T) No CLO (1T) Weld (1T) Weld (12T) ~ 29x Speedup from fusion across libraries library Filter Dataset à Compute a Linear Model à Aggregate Indices (eliminates cross-library memory movement, co-optimizes library calls) Uses NumPy and Pandas (both backed by C )

  19. Weld: An Optimizing Runtime Runtime [secs; log10] 0.1 1 10 100 Native (1T) No Fusion (1T) No CLO (1T) Weld (1T) Weld (12T) ~ 180x Speedup with automatic parallelization Filter Dataset à Compute a Linear Model à Aggregate Indices (eliminates cross-library memory movement, co-optimizes library calls) Uses NumPy and Pandas (both backed by C )

  20. Weld Architecture

  21. Weld Architecture machine graph … SQL learning algorithms Common Runtime

  22. Weld Architecture machine graph … SQL learning algorithms Common Runtime … CPU GPU

  23. Weld Architecture machine graph … SQL learning algorithms Runtime API Weld Weld IR runtime Optimizer Backends … CPU GPU

  24. Rest of this Talk Runtime API – How applications “speak” with Weld Weld IR – How applications express computation Results Demo www.weld.rs

  25. Runtime API Uses lazy evaluation to collect work across libraries User Application Weld Runtime f1 data = lib1.f1() IR fragments lib2.map(data, map for each function item => lib3.f2(item) f2 ) Runtime API Combined IR program Optimized 1101110 Data in 0111010 1101111 machine code Application

  26. Without Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) data

  27. Without Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) data squares

  28. Without Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) data squares sum Each call reads/writes memory

  29. With Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) WeldObject map

  30. With Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) WeldObject map reduce

  31. With Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) WeldObject map reduce sqrt

  32. With Weld import itertools as it squares = it. map (data, |x| x * x) sum = sqrt(it. reduce (squares, 0, +)) WeldObject sum Optimized Program map reduce sqrt sqrt(reduce(…)) Evaluate the optimized program once

  33. Weld IR: Expressing Computations Designed to meet three goals: 1. Generality support diverse workloads and nested calls 2. Ability to express optimizations e.g., loop fusion, vectorization, and loop tiling 3. Explicit parallelism and targeting parallel hardware

  34. Weld IR: Internals Small IR* with only two main constructs. Pa Parallel lo loops ps: iterate over a dataset Build Builders: declarative objects for producing results » E.g., append items to a list, compute a sum » Can be implemented differently on different hardware

  35. Weld IR: Internals Small IR* with only two main constructs. Pa Parallel lo loops ps: iterate over a dataset Build Builders: declarative objects for producing results » E.g., append items to a list, compute a sum » Can be implemented differently on different hardware Captures relational algebra, functional APIs like Spark, linear algebra, and composition thereof

  36. Examples: Functional Ops

  37. Examples: Functional Ops Functional operators using builders def map(data, f): builder = new appender[i32] for x in data: merge (builder, f(x)) result (builder)

  38. Examples: Functional Ops Functional operators using builders def map(data, f): builder = new appender[i32] for x in data: merge (builder, f(x)) result (builder) def reduce(data, zero, func): builder = new merger[zero, func] for x in data: merge (builder, x) result (builder)

  39. Example Optimizations squares = map (data, |x| x * x) sum = reduce (data, 0, +) bld1 = new appender[i32] bld2 = new merger[0, +] for x: simd[i32] in data: merge (bld1, x * x) merge (bld2, x) Loops can be merged into one pass over data and vectorized

  40. Other Features Interactive REPL for debugging Weld programs Serialization/Deserialization operators for Weld data Configurable memory limit and thread limit Trace Mode for tracing execution at runtime to catch bugs Rich logging for easy debugging Utilities for generating C bindings to pass data into Weld C UDF Support for calling arbitrary C functions Ability to Dump Code for debugging Syntax Highlighting support for Vim Type Inference in Weld IR to simplify writing code manually for testing

  41. Implementation

  42. Implementation APIs in C and Python (with Java coming soon) • Full LLVM-based CPU backend SIMD support Written in ~30K lines of Rust, LLVM, C++ • Fast, safe native language with no runtime

  43. Implementation APIs in C and Python (with Java coming soon) • Full LLVM-based CPU backend SIMD support Written in ~30K lines of Rust, LLVM, C++ • Fast, safe native language with no runtime Partial Prototypes of Pandas , NumPy , TensorFlow and Apache Spark

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend