Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tuples! #94

Merged
merged 39 commits into from
Feb 9, 2021
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
eaaee59
add construct tuple and tuple get item to glenside ir
hypercubestart Dec 4, 2020
4b63d37
add yolov3 stuff
hypercubestart Dec 4, 2020
847fd4f
from_relay
hypercubestart Dec 4, 2020
003564c
add rest of relay ops
hypercubestart Dec 4, 2020
73e362f
ad updated efficientnet
hypercubestart Dec 8, 2020
7f46310
fix efficientnet test
hypercubestart Dec 8, 2020
bf1e886
add stuff
hypercubestart Dec 10, 2020
43a6f67
update module def
hypercubestart Dec 10, 2020
dc1950c
temp tvm head
hypercubestart Dec 12, 2020
459058a
add from_relay branches
hypercubestart Dec 12, 2020
eddb105
update tvm ref
hypercubestart Dec 12, 2020
2cc98b1
done with transpose and sigmoid
hypercubestart Dec 12, 2020
8531085
add more relay ops
hypercubestart Dec 15, 2020
43e7ff3
code for from_relay
hypercubestart Dec 21, 2020
7652b58
update glenside temp
hypercubestart Dec 21, 2020
6765c41
small fix
hypercubestart Dec 21, 2020
e1e09be
update tvm
hypercubestart Dec 21, 2020
00cc595
fixing from_relay
hypercubestart Dec 22, 2020
d82759d
add tuple variant
hypercubestart Dec 23, 2020
d8940be
error in writenpy for vector i think
hypercubestart Dec 23, 2020
1a801fa
cast to float and min/max analysis
hypercubestart Dec 24, 2020
3664815
from relay done
hypercubestart Dec 24, 2020
24f78ef
cargo fmt
hypercubestart Dec 25, 2020
d190fd5
cleanup
hypercubestart Dec 25, 2020
9a03c60
fmt
hypercubestart Dec 25, 2020
9da68b8
dont do codegen yet
hypercubestart Dec 25, 2020
41fe39b
fix tests
hypercubestart Dec 25, 2020
8d10910
fix suggestions
hypercubestart Jan 12, 2021
fb92d47
update tvm
hypercubestart Jan 13, 2021
0e3257d
use relay type information
hypercubestart Jan 17, 2021
e2baa41
fix parts
hypercubestart Jan 20, 2021
1e7fdc5
move comments
hypercubestart Jan 20, 2021
b5ca9d0
suggestions
hypercubestart Jan 26, 2021
d13f565
add working tests for non-opaque relay ops
hypercubestart Jan 27, 2021
7f3cd27
new tests
hypercubestart Jan 28, 2021
89ab002
add round
hypercubestart Feb 9, 2021
ff24a48
Fix errors in ilp.rs, plus typos
gussmith23 Feb 9, 2021
49dc976
Simplify logic
gussmith23 Feb 9, 2021
663b9a7
remove warning + rerun tests
gussmith23 Feb 9, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ git = "https://github.com/gussmith23/rplex"
# issue.
# NOTE Keep glenside-evaluation in sync with this
# If the versions get out of whack, we'll probably have some weird errors.
rev = "ff5450f9cbe07d57e73594c5fbd68f3bd665c2dc"
git = "https://github.com/gussmith23/tvm"
rev = "4ed759f6b6cafbab707f95b57762913a1f57c021"
git = "https://github.com/hypercubestart/incubator-tvm"
gussmith23 marked this conversation as resolved.
Show resolved Hide resolved
optional = true

[dependencies.egg]
Expand All @@ -53,4 +53,4 @@ features = ["approx"]

[dependencies.serde]
version = "1.0"
features = ["derive"]
features = ["derive"]
344 changes: 344 additions & 0 deletions models/efficientnet-lite4-11.relay

Large diffs are not rendered by default.

357 changes: 357 additions & 0 deletions models/yolov3.relay

Large diffs are not rendered by default.

Loading