Halide
TensorOperations.jl
Halide | TensorOperations.jl | |
---|---|---|
44 | 3 | |
5,922 | 484 | |
0.6% | - | |
9.3 | 7.8 | |
1 day ago | 18 days ago | |
C++ | Julia | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Halide
- Halide: A language for fast, portable computation on images and tensors
-
Show HN: Flash Attention in ~100 lines of CUDA
If CPU/GPU execution speed is the goal while simultaneously code golfing the source size, https://halide-lang.org/ might have come in handy.
- Halide v17.0.0
-
From slow to SIMD: A Go optimization story
This is a task where Halide https://halide-lang.org/ could really shine! It disconnects logic from scheduling (unrolling, vectorizing, tiling, caching intermediates etc), so every step the author describes in the article is a tunable in halide. halide doesn't appear to have bindings for golang so calling C++ from go might be the only viable option.
-
Implementing Mario's Stack Blur 15 times in C++ (with tests and benchmarks)
Probably would have been much easier to do 15 times in https://halide-lang.org/
The idea behind Halide is that scheduling memory access patterns is critical to performance. But, access patterns being interwoven into arithmetic algorithms makes them difficult to modify separately.
So, in Halide you specify the arithmetic and the schedule separately so you can rapidly iterate on either.
- Making Hard Things Easy
-
Deepmind Alphadev: Faster sorting algorithms discovered using deep RL
It is not the sorting per-se which was improved here, but sorting (particularly short sequences) on modern CPUs with really the complexity being on the difficulty of predicting what will work quickly on these modern CPUs.
Doing an empirical algorithm search to find which algorithms fit well on modern CPUs/memory systems is pretty common, see e.g. FFTW, ATLAS, https://halide-lang.org/
-
Two-tier programming language
Halide https://halide-lang.org/
- Best book on writing an optimizing compiler (inlining, types, abstract interpretation)?
-
Blog Post: Can You Trust a Compiler to Optimize Your Code?
It doesn’t apply in this case, but in general if you really want the best vectorization I would suggest using https://halide-lang.org instead of trying to coerce your compiler.
TensorOperations.jl
- Einsum in 40 Lines of Python
-
Absolutely suck at tech stuff,but Julia makes me want to learn coding. Wish me luck.
Sometimes broadcasting feels like magic to me. It just works more often than not even when I am confused with the dimensions. If you do a lot of Tensor stuff it's also worth checking out Einstein notation (https://github.com/Jutho/TensorOperations.jl)
-
Programming Languages where element-wise matrix notation is possible
There are some libraries and macros for Einstein notation and related ideas, like TensorOperations.jl in Julia, einsum in numpy which someone already mentioned, and some small-scale/research languages like Diderot and Egison. In the mainstream, I guess languages generally use for loops or list comprehensions and try to recover vectorisation from that after the fact, but don’t guarantee it. Those that do make guarantees tend to use combinators that are matrixwise/function-level. I admit I pretty much categorically prefer the latter so I’m not as aware of the state of this as I’d like to be able to help.
What are some alternatives?
taichi - Productive, portable, and performant GPU programming in Python.
NDTensors.jl - A Julia package for n-dimensional sparse tensors.
futhark - :boom::computer::boom: A data-parallel functional programming language
Tullio.jl - ⅀
Image-Convolutaion-OpenCL
Grassmann.jl - ⟨Grassmann-Clifford-Hodge⟩ multilinear differential geometric algebra
triton - Development repository for the Triton language and compiler
TensorFlock - A small functional tensor language with Einstein summation notation convention and shape-checking at compile-time.
ponyc - Pony is an open-source, actor-model, capabilities-secure, high performance programming language
ThinkJuliaFR.jl - Introduction à la programmation en Julia (livre)
qoi - The “Quite OK Image Format” for fast, lossless image compression
TensorComprehensions - A domain specific language to express machine learning workloads.