Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
The Tensor Algebra SuperOptimizer for Deep Learning
| Date | Stars |
|---|---|
| 2026-07-31 | 743 |
| 2026-08-01 | 743 |
| 2026-08-06 | 743 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# TASO: The Tensor Algebra SuperOptimizer for Deep Learning
TASO optimizes the computation graphs of DNN models using automatically generated and verified graph transformations.
For an arbitrary DNN model, TASO uses the auto-generated graph transformations to build a large search space of potential computation graphs that are equivalent to the original DNN model.
TASO employs a cost-based search algorithm to explore the space, and automatically discovers highly optimized computation graphs.
TASO outperforms the graph optimizers in existing deep learning frameworks by [up to 3x](http://theory.stanford.edu/~aiken/publications/papers/sosp19.pdf).
<div align="center">
<img src="https://github.com/jiazhihao/TASO/blob/master/figures/inference.png">
End-to-end inference performance comparison on a NVIDIA V100 GPU.
</div>
## Install TASO
See [instructions](INSTALL.md) to install TASO from source.
We also provide prebuilt [docker images](https://github.com/jiazhihao/TASO/blob/master/INSTALL.md) with all dependencies pre-installed.
## Use TASO
TASO can directly optimize any pre-trained DNN models in [ONNX](https://onnx.ai), [TensorFlow](https://www.tensorflow.org/guide/saved_model), and [PyTorch](https://pytorch.org/docs/stable/onnx.html) graph formats.
TASO also provides a Python interface for optimizing arbitrary DNN architectures.
TASO supports exporting the optimized computation graphs to ONNX, which can be directly used as inputs by most existing deep learning frameworks.
### Optimize ONNX Models
TASO can directly optimize pre-trained ONNX models, and this can be done in just a few lines of Python code.
The following code snippet shows how to load a pre-trained DNN model from ONNX, optimize the model, and save the optimized model into a ONNX file.
```python
import taso
import onnx
old_model = taso.load_onnx("/path/to/load/onnx/model")
taso_graph = taso.optimize(old_model)
new_model = taso.export_onnx(taso_graph)
onnx.save(new_model, "/path/to/save/new/onnx/model")
```
The optimized model has the same accuracy as the original and can be directly used by existing deep learning frameworks.
Some original and TASO-optimized ONNX files are available in the `onnx` folder.
<!-- The following figure shows the end-to-end inference performance comparison on a NVIDIA V100 GPU. -->
### Optimize TensorFlow Models
TASO can optimize TensorFlow models by converting the model to ONNX using [tf2onnx](https://github.com/onnx/tensorflow-onnx).
* First, install `tf2onnx` from PyPi as follows or [from source](https://github.com/onnx/tensorflow-onnx).
```
pip install -U tf2onnx
```
* Second, convert a TensorFlow model to ONNX using `tf2onnx`.
```
python -m tf2onnx.convert \
--saved-model /path/to/tensorflow/saved/model \
--output /path/to/onnx/model/file
```
* Third, use TASO to optimize the model in ONNX by following the [above instructions](https://github.com/jiazhihao/TASO#optimize-onnx-models).
### Optimize PyTorch Models
PyTorch has built-in support for ONNX as a part of the [torch.onnx](https://pytorch.org/docs/master/onnx.html) package.
TASO can directly optimize PyTorch models in the ONNX format.
### Optimize Arbitrary DNN Models using the Python Interface
TASO can also optimize arbitrary DNN architectures using the TASO Python interface.
The following code snippet builds the left-most DNN graph depicted in the figure. TASO automatically performs a series of non-trivial transformations, and eventually discovers the right-most DNN graph, which is 1.3x faster on a V100 GPU. More DNN examples are available in the `examples` folder.
<div align="center">
<img src="https://github.com/jiazhihao/TASO/blob/master/figures/graph_subst.png">
</div>
```python
import taso
import onnx
#Build DNN model
graph = taso.new_graph()
input = graph.new_input(dims=(1,128,56,56))
w1 = graph.new_weight(dims=(128,128,3,3))
w2 = graph.new_weight(dims=(128,128,1,1))
w3 = graph.new_weight(dims=(128,128,3,3))
left = graph.conv2d(input=inpExcerpt of 5,123 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:1f01994b44f5c32c, topic:deep-learning