I'd love for this to get more mainstream attention! J, Futhark, Accelerate all have very neat stuff under the hood.
Functional Programming for Array-Based Parallelism
11–20 of 23 posts
Re: Functional Programming for Array-Based Parallelism
#12Re: Functional Programming for Array-Based Parallelism
#13I'd love for this to get more mainstream attention! J, Futhark, Accelerate all have very neat stuff under the hood.
I second J and Futhark. I love J, and I wish there was a way to use the GPU with J. I have looked briefly at APL -> TAIL -> Futhark, but I don't know enough to do something useful with that particular toolchain or wow myself enough to keep going. More studying...
Re: Functional Programming for Array-Based Parallelism
#14Earlier quoted context omitted.
I second J and Futhark. I love J, and I wish there was a way to use the GPU with J. I have looked briefly at APL -> TAIL -> Futhark, but I don't know enough to do something useful with that particular toolchain or wow myself enough to keep going. More studying...
How about co-dfns? CUDA accelerated APL! https://github.com/Co-dfns/Co-dfns
Re: Functional Programming for Array-Based Parallelism
#15At least when I program in MATLAB instead of python I think very differently.
Re: Functional Programming for Array-Based Parallelism
#16I'd love for this to get more mainstream attention! J, Futhark, Accelerate all have very neat stuff under the hood.
Similar to Haskell it's originated in academic research. It utilizes static single assignment (SSA) concept that can be used for both imperative and functional programming [3]. Neat stuff. Hopefully someone can emulate this with a modern open source hybrid functional language like Scala or D.
[1]http://www.sac-home.org/doku.php
[2]https://www.microsoft.com/en-us/research/video/sac-off-the-s...
Re: Functional Programming for Array-Based Parallelism
#17One of the most elegant paper series I've ever read is her "More Types for Nested Data Parallelism" ( https://dl.acm.org/doi/abs/10.1145/351240.351249 ) + the preceding NESL / segmented scan papers by Guy Blelloch ( https://www.cs.cmu.edu/~guyb/papers/Nesl2.0.pdf ) . They helped lead to our GPU journey for starting Graphistry, and why we bet on GPU dataframes (ex: RAPIDS.ai) eventually overtaking Spark and friends ev…
Seconded! I had the pleasure of taking Guy Belloch's parallel programming class at CMU as a sophomore. A large majority of the homework assignments involved leveraging the segmented scan operator to solve all sorts of classical parallel programming problems. Really eye opening stuff! I am still impressed that prefix sum (generalized over all associative operators, not just +) can be done in O(log n) span. And the alg…
Re: Functional Programming for Array-Based Parallelism
#18One of the most elegant paper series I've ever read is her "More Types for Nested Data Parallelism" ( https://dl.acm.org/doi/abs/10.1145/351240.351249 ) + the preceding NESL / segmented scan papers by Guy Blelloch ( https://www.cs.cmu.edu/~guyb/papers/Nesl2.0.pdf ) . They helped lead to our GPU journey for starting Graphistry, and why we bet on GPU dataframes (ex: RAPIDS.ai) eventually overtaking Spark and friends ev…
Seconded! I had the pleasure of taking Guy Belloch's parallel programming class at CMU as a sophomore. A large majority of the homework assignments involved leveraging the segmented scan operator to solve all sorts of classical parallel programming problems. Really eye opening stuff! I am still impressed that prefix sum (generalized over all associative operators, not just +) can be done in O(log n) span. And the alg…
Now if Cargo could install Haskell and its libs, I would jump on it in an instant.
Re: Functional Programming for Array-Based Parallelism
#19One of the most elegant paper series I've ever read is her "More Types for Nested Data Parallelism" ( https://dl.acm.org/doi/abs/10.1145/351240.351249 ) + the preceding NESL / segmented scan papers by Guy Blelloch ( https://www.cs.cmu.edu/~guyb/papers/Nesl2.0.pdf ) . They helped lead to our GPU journey for starting Graphistry, and why we bet on GPU dataframes (ex: RAPIDS.ai) eventually overtaking Spark and friends ev…
Seconded! I had the pleasure of taking Guy Belloch's parallel programming class at CMU as a sophomore. A large majority of the homework assignments involved leveraging the segmented scan operator to solve all sorts of classical parallel programming problems. Really eye opening stuff! I am still impressed that prefix sum (generalized over all associative operators, not just +) can be done in O(log n) span. And the alg…
Re: Functional Programming for Array-Based Parallelism
#20Earlier quoted context omitted.
Seconded! I had the pleasure of taking Guy Belloch's parallel programming class at CMU as a sophomore. A large majority of the homework assignments involved leveraging the segmented scan operator to solve all sorts of classical parallel programming problems. Really eye opening stuff! I am still impressed that prefix sum (generalized over all associative operators, not just +) can be done in O(log n) span. And the alg…
I read that the prefix scan is great so I read somebody's thesis. I a) didn't really get it and b) felt it was doing some complicated stuff for little value. Doubtless I'm wrong, computer scientists tend to be smarter than me, can you give me some insight why it's so valuable?
1. Data parallelism, esp. for super power efficient parallel hardware (SIMD, GPU, all the stuff that lets you go 10-100X over Spark for the same budget) is hard for computing over "irregular" data like trees and graphs. Prefix scan showed a basic way to do it for a bunch of basic math over these. A lot of the 90s / early 2000s became research into covering all sorts of weird cases. This shows data parallelism is broadly applicable so worth pushing forward on.
2. Guy B, and then Manuel C & Gabriele K, then showed you don't have to be a weird HPC person hand-rolling Fortran nor rely on weird one-off special case libraries to use the above. We can build libraries of high-level primitives -- think map/reduce -- and even to the level that compilers can make it look like "normal" haskell. Most things can compile down to prefix scan. This is similar to Impala/Spark figuring out RDDs/dataframes and doing SQL on top, except again, for 10-100X better performance, and you don't have to contort everything into 1970s SQL. RE:Prefix scan in particular, we don't _have_ to implement all the algs as prefix scan, but it's reliable base case, and where possible (most cases!), we nowadays instead swap in more efficient hand-written CUDA library calls.
Nowadays, when GPUs are in the cloud, Moore's Law stalled out for CPUs but is still going strong for GPUs, and most big data systems realize their latency and data shuttling/serialization sucks, all ^^^ is a big deal. See 10yr AWS price chart I calculated: https://twitter.com/lmeyerov/status/1247382156487213057/phot... . You can just code your Python dataframe code in https://rapids.ai/ and not really think about it, just know you're doing better than the hadoop stuff underneath and without managing a dirty horde. The existence of NESL and the research area that came after means we're still at the beginning of swapping out crappy CPU software for better data parallel stuff, and _it's doable_.