scalarization of index vectors in compiled apl
play

Scalarization of Index Vectors in Compiled APL Robert Bernecky - PowerPoint PPT Presentation

Scalarization of Index Vectors in Compiled APL Robert Bernecky Snake Island Research Inc 18 Fifth Street, Wards Island Toronto, Canada tel: +1 416 203 0854 bernecky@snakeisland.com September 30, 2011 . . . . . . Robert Bernecky


  1. Scalarization of Index Vectors in Compiled APL Robert Bernecky Snake Island Research Inc 18 Fifth Street, Ward’s Island Toronto, Canada tel: +1 416 203 0854 bernecky@snakeisland.com September 30, 2011 . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  2. Abstract High-performance for array languages offers several unique challenges to the compiler writer, including fusion of loops over large arrays, detection and elimination of scalars as arbitrary arrays, and eliminating or minimizing the run-time creation of index vectors. We introduce one of those challenges in the context of SAC, a functional array languge, and give preliminary results on the performance of a compiler that eliminates index vectors by scalarizing them within the optimization cycle. . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  3. The Question ◮ How much faster is compiled APL than interpreted APL? . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  4. The Question ◮ How much faster is compiled APL than interpreted APL? ◮ The answer is NOT a scalar. . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  5. Environment ◮ Dyalog APL 13.0 vs. APEX/SAC . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  6. Environment ◮ Dyalog APL 13.0 vs. APEX/SAC ◮ The current SAC compiler ◮ a functional array language ◮ data-parallel nested loops: With-Loop ◮ array-based optimizations ◮ functional loops and conditionals as functions . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  7. Environment ◮ Dyalog APL 13.0 vs. APEX/SAC ◮ The current SAC compiler ◮ a functional array language ◮ data-parallel nested loops: With-Loop ◮ array-based optimizations ◮ functional loops and conditionals as functions ◮ Goal: Compiled APL performance competitive with hand-coded C . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  8. Some Reasons Why APL is Slow Speedup (APL/APEX w/AWLF) ◮ Index vector materialization ◮ Variable per-primitive overheads ◮ Fixed per-primitive overheads: Syntax analysis, conf checks, 1,000 100 fn dispatch, mem mgmt 0.1 10 1 APL: Dyalog APL 13.0 SAC: 17,654:MODIFIED Higher is better for APEX buildvAKS buildvfAKS buildv2AKS compiotaAKS compiotadAKS csbenchAKS downgradePVAKS fdAKS gewlfAKS APL vs. APEX CPU Time Performance (2,011−09−30) Robert Bernecky histgradeAKS histlpAKS histopAKS histopfAKS iotanAKS ipapeAKS ipbbAKS ipbdAKS Benchmark name ipddAKS ipopneAKS Scalarization of Index Vectors in Compiled APL ipplusandAKS lltopAKS logd3AKS logd4AKS loopfsAKS loopfvAKS loopisAKS . mconvAKS mconvoutAKS nsvAKS . nthoneAKS schedrAKS scsAKS testforAKS . testindxAKS testlcvAKS unirandAKS . unirand3AKS upgradeBoolAKS upgradeCharAKS upgradePVAKS . upgradeRPVAKS .

  9. Why APL is Slow: Fixed Per-Primitive Overheads APL Primitive Overhead time/element for (Intvec+intvec) 140 microseconds/element 120 100 80 60 40 20 0 1 3 5 7 9 11 13 15 17 19 21 23 25 # elements in array Who suffers? Apps dominated by operations on scalars: CRC, loopy histograms, dynamic programming, RNG . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  10. Why APL is Slow: Fixed Per-Primitive Overheads APL vs. APEX CPU Time Performance (2,011−09−30) 1,000 Speedup (APL/APEX w/AWLF) Higher is better for APEX APL: Dyalog APL 13.0 SAC: 17,654:MODIFIED 100 10 crcAKS histlpAKS lltopAKS loopisAKS scsAKS testforAKS Benchmark name . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  11. Why APL is Slow: Fixed Per-Primitive Overheads ◮ Scalar-dominated apps have good serial speedup. . . ◮ but poor parallel speedup APEX/SAC Parallel Performance SAC (17654:MODIFIED) real time 2,011−09−30 0.5x mt1 mt2 mt3 0.4x 6−core AMD Phenom II X6 1,075T Execution time (sec) mt4 mt5 mt6 0.3x 0.2x 0.1x 0x crc histlp lltop loopis scs testfor # threads . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  12. Why is APL Slow? Variable Per-Primitive Overheads ◮ Naive execution: Limited fn composition, e.g. sum( iota( N)) . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  13. Why is APL Slow? Variable Per-Primitive Overheads ◮ Naive execution: Limited fn composition, e.g. sum( iota( N)) ◮ Array-valued intermediate results: memory madness . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  14. Why is APL Slow? Variable Per-Primitive Overheads ◮ Naive execution: Limited fn composition, e.g. sum( iota( N)) ◮ Array-valued intermediate results: memory madness ◮ Who suffers? Apps dominated by operations on large arrays: Signal processing, convolution, normal move-out APL vs. APEX CPU Time Performance (2,011−09−30) Speedup (APL/APEX w/AWLF) 1,000 Higher is better for APEX 100 SAC: 17,654:MODIFIED APL: Dyalog APL 13.0 10 1 0.1 iotanAKS ipapeAKS ipbdAKS ipopneAKS logd3AKS logd4AKS upgradeCharAKS . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL Benchmark name

  15. Why is APL Slow? Variable Per-Primitive Overheads ◮ Who suffers? Apps dominated by operations on large arrays: Signal processing, convolution, normal move-out APEX/SAC Parallel Performance SAC (17654:MODIFIED) real time 2,011−09−30 mt1 1.2x 6−core AMD Phenom II X6 1,075T mt2 Execution time (sec) mt3 1x mt4 mt5 0.8x mt6 0.6x 0.4x 0.2x 0x iotan ipape ipbbAKD ipbd ipopneAKD ipopne logd3 logd4 upgradeChar # threads . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  16. Why is APL Slow? Materialized Index Vectors ◮ Mike Jenkins’ matrix divide model a[;i,pi] = a[;pi,i] . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  17. Why is APL Slow? Materialized Index Vectors ◮ Mike Jenkins’ matrix divide model a[;i,pi] = a[;pi,i] ◮ [i,pi] and [pi,i] are materialized index vectors . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  18. Why is APL Slow? Materialized Index Vectors ◮ Mike Jenkins’ matrix divide model a[;i,pi] = a[;pi,i] ◮ [i,pi] and [pi,i] are materialized index vectors ◮ A few simple changes to scalarize index vectors: tmp = a[;i] a[;i] = a[;pi] a[;pi] = tmp . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  19. Why is APL Slow? Materialized Index Vectors ◮ Mike Jenkins’ matrix divide model a[;i,pi] = a[;pi,i] ◮ [i,pi] and [pi,i] are materialized index vectors ◮ A few simple changes to scalarize index vectors: tmp = a[;i] a[;i] = a[;pi] a[;pi] = tmp ◮ Matrix divide model now runs twice as fast! . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  20. Why Materialized Index Vectors are Expensive ◮ Materialization of [i,pi] and [pi,i] : . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  21. Why Materialized Index Vectors are Expensive ◮ Materialization of [i,pi] and [pi,i] : ◮ (* for indexing part) *Increment reference counts on i and pi Allocate 2-element temp vector Initialize temp vector descriptor Initialize temp vector elements *Perform indexing Deallocate 2-element temp vector *Decrement reference counts on i and pi . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  22. Why Materialized Index Vectors are Expensive ◮ Who suffers? Apps using explicit array indexing . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  23. Why Materialized Index Vectors are Expensive ◮ Who suffers? Apps using explicit array indexing ◮ e.g. , many apps dominated by indexed assign . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  24. Why Materialized Index Vectors are Expensive ◮ Who suffers? Apps using explicit array indexing ◮ e.g. , many apps dominated by indexed assign ◮ Who suffers? Matrix divide, compress, deal, dynamic programming . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  25. Why Materialized Index Vectors are Expensive ◮ Who suffers? Apps using explicit array indexing ◮ e.g. , many apps dominated by indexed assign ◮ Who suffers? Matrix divide, compress, deal, dynamic programming ◮ Who suffers? Inner products that use the CDC STAR-100 algorithm . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  26. Why Materialized Index Vectors are Expensive ◮ Who suffers? Apps using explicit array indexing ◮ e.g. , many apps dominated by indexed assign ◮ Who suffers? Matrix divide, compress, deal, dynamic programming ◮ Who suffers? Inner products that use the CDC STAR-100 algorithm ◮ 800x800 ipplusandAKD CPU time: 45 minutes! . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

  27. Eliminating Materialized Index Vectors With IVE ◮ IFL2006 paper: Index Vector Elimination (IVE) Bernecky, Grelck, Herhut, Scholz, Trojahner, and Schafarenko . . . . . . Robert Bernecky Scalarization of Index Vectors in Compiled APL

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