An open API service indexing awesome lists of open source software.

https://github.com/nunoplopes/torchy

A tracing JIT compiler for PyTorch
https://github.com/nunoplopes/torchy

jit-compiler lazy-evaluation pytorch tracing-jit

Last synced: 8 months ago
JSON representation

A tracing JIT compiler for PyTorch

Awesome Lists containing this project

README

          

Torchy
======

A tracing JIT for PyTorch.
WIP; don't use.

Install
-------
```
$ python setup.py install
```

Run
---
Torchy shouldn't require any change beyond adding a call to `torchy.enable()`.
Example:

```python
import torch
import torchy

torchy.enable()

x = torch.tensor(((3.,2.), (4.,5.)))
y = torch.tensor(((5.,6.), (7.,1.)))

w = x.add(x)
z = x.add(y)
w = None # w not computed
print(z)
```