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

[Test] Fix AutoScheduler test to cover Conv2D Winograd #8539

Merged
merged 52 commits into from
Jul 29, 2021
Merged
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
629ec50
optimize resize vertor
sunjiweiswift Jun 25, 2021
5005373
tmp
sunjiweiswift Jun 25, 2021
a1b749f
DoMultiLevelTiling
sunjiweiswift Jun 26, 2021
f1fc313
modify size_t to int
sunjiweiswift Jun 26, 2021
65a7a00
modify
sunjiweiswift Jun 26, 2021
2368df9
modify level fill
sunjiweiswift Jun 26, 2021
e8ba850
Update utils.cc
sunjiweiswift Jun 26, 2021
a832739
format lower count
sunjiweiswift Jun 26, 2021
258f382
Merge branch 'main' of https://github.com/sunjiweiswift/tvm
sunjiweiswift Jun 26, 2021
2de6c99
delete blank lines
sunjiweiswift Jun 26, 2021
cb99388
delete blank lines
sunjiweiswift Jun 26, 2021
ece0e1d
Merge branch 'main' of https://github.com/sunjiweiswift/tvm
sunjiweiswift Jun 26, 2021
9da6fa3
re-commit message
sunjiweiswift Jun 27, 2021
718e58b
Merge pull request #1 from apache/main
sunjiweiswift Jul 15, 2021
7377e43
Update graph_executor.h
sunjiweiswift Jul 15, 2021
8853436
Merge pull request #2 from apache/main
sunjiweiswift Jul 19, 2021
4a007ab
add setoutputzero
sunjiweiswift Jul 19, 2021
8ca606f
add set output zero
sunjiweiswift Jul 19, 2021
6afb609
Update graph_executor.cc
sunjiweiswift Jul 19, 2021
d71dece
Update graph_executor.h
sunjiweiswift Jul 19, 2021
145219c
delete const_cast
sunjiweiswift Jul 20, 2021
e45c77b
add common function chechDltensor
sunjiweiswift Jul 20, 2021
b7a27c5
Update graph_executor.h
sunjiweiswift Jul 20, 2021
bf6ed08
Update graph_executor.cc
sunjiweiswift Jul 20, 2021
80fc91f
add output_ sort
sunjiweiswift Jul 20, 2021
ab5f957
Update graph_executor.cc
sunjiweiswift Jul 20, 2021
07e80ad
add a.nodeid == b.nodeid
sunjiweiswift Jul 20, 2021
e67b839
add unit test for set output zero
sunjiweiswift Jul 21, 2021
052fa56
add include <algorithm>
sunjiweiswift Jul 22, 2021
847634e
modify Setoutput zero copy
sunjiweiswift Jul 22, 2021
b2d9471
modify by clang-format
sunjiweiswift Jul 22, 2021
5d0461a
add unit test for set output zero
sunjiweiswift Jul 22, 2021
4ebf2bd
rrealy ut go back
sunjiweiswift Jul 22, 2021
c221b51
rrealy ut go back
sunjiweiswift Jul 22, 2021
92294d3
modify input->output
sunjiweiswift Jul 22, 2021
dd54915
delete sort output input
sunjiweiswift Jul 23, 2021
66ef5fe
modify build_module_test.cc
sunjiweiswift Jul 23, 2021
65c2d19
midify winograd UT
sunjiweiswift Jul 23, 2021
bb88c6b
re-pr
sunjiweiswift Jul 24, 2021
e772e16
empty commit
sunjiweiswift Jul 24, 2021
810ec28
empty commit
sunjiweiswift Jul 24, 2021
afed7c3
empty commit
sunjiweiswift Jul 25, 2021
d8d8ebf
empty commit
sunjiweiswift Jul 25, 2021
94617a6
empty commit
sunjiweiswift Jul 26, 2021
aa511ce
empty commit
sunjiweiswift Jul 26, 2021
4c38fb2
empty commit
sunjiweiswift Jul 27, 2021
fe37b44
empty commit
sunjiweiswift Jul 27, 2021
94f6493
empty commit
sunjiweiswift Jul 27, 2021
8c8c208
empty commit
sunjiweiswift Jul 27, 2021
1c6751b
empty commit
sunjiweiswift Jul 28, 2021
e82493b
empty commit
sunjiweiswift Jul 28, 2021
9924414
empty commit
sunjiweiswift Jul 28, 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
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def test_conv2d():


def test_conv2d_winograd():
mod, data, weight = get_relay_conv2d(kh=3, kw=3)
mod, data, weight = get_relay_conv2d(outc=128, kh=3, kw=3)
tune_and_check(mod, data, weight)


Expand Down