GitHub user ozgrakkurt closed a discussion: Fusing multiple operations into one kernel
Hey! Does datafusion already do something like this or was this considered? For example `arr0+arr1*arr2` can be fused into a single kernel to avoid allocation and which might even end up being vectorized into a `fmadd` SIMD instruction. Also for something like `a && b && c` could be easily fused to avoid intermediary allocation, I guess this might be common in filter operations. GitHub link: https://github.com/apache/datafusion/discussions/5919 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
