Skip to content

[Relay] Add support for TupleGetItem in op fusion - #2914

Merged
tqchen merged 7 commits into
apache:masterfrom
masahi:opfusion-tuplegetitem
Mar 29, 2019
Merged

[Relay] Add support for TupleGetItem in op fusion#2914
tqchen merged 7 commits into
apache:masterfrom
masahi:opfusion-tuplegetitem

Conversation

@masahi

@masahimasahi commented Mar 27, 2019

Copy link
Copy Markdown
Member

A partial fix for #2890. It enables fusing through TupleGetItemNode.

The strategy is similar to the TupleNode case, but a special care is needed to handle the reference type. Since the gradient pass generates many TupleNode, TupleGetItemNode and Reference nodes under the hood, and references do not play well with fusion, I simply avoid fusing through reference nodes.

A CPU/GPU execution test is added, as requested.

Example: GRU-ish unit

Before this PR (also see #2890)

fn (%X: Tensor[(1, 10), float32],
%y: Tensor[(30, 10), float32])
-> Tensor[(1, 10), float32] {
%0 = fn(%p0: Tensor[(1, 10), float32],
%p1: Tensor[(30, 10), float32])
-> Tensor[(1, 30), float32] {
%1 = nn.dense(%p0, %p1, units=None) # ty=Tensor[(1, 30), float32]
%1
}
%2 = %0(%X, %y) # ty=Tensor[(1, 30), float32]
%3 = fn(%p01: Tensor[(1, 30), float32])
-> Tuple[Tensor[(1, 10), float32], Tensor[(1, 10), float32], Tensor[(1, 10), float32]] {
%4 = split(%p01, indices_or_sections=int64(3), axis=1) # ty=Tuple[Tensor[(1, 10), float32], Tensor[(1, 10), float32], Tensor[(1, 10), float32]]
%4
}
%5 = %3(%2) # ty=Tuple[Tensor[(1, 10), float32], Tensor[(1, 10), float32], Tensor[(1, 10), float32]]
%6 = %5.0
%7 = %5.1
%8 = %5.2
%9 = fn(%p02: Tensor[(1, 10), float32],
%p11: Tensor[(1, 10), float32],
%p2: Tensor[(1, 10), float32])
-> Tensor[(1, 10), float32] {
%10 = sigmoid(%p02) # ty=Tensor[(1, 10), float32]
%11 = tanh(%p11) # ty=Tensor[(1, 10), float32]
%12 = exp(%p2) # ty=Tensor[(1, 10), float32]
%13 = multiply(%11, %12) # ty=Tensor[(1, 10), float32]
%14 = add(%10, %13) # ty=Tensor[(1, 10), float32]
%14
}
%15 = %9(%6, %7, %8) # ty=Tensor[(1, 10), float32]
%15
}

With this PR

%14 = fn (%X: Tensor[(1, 1000), float32], %y: Tensor[(3000, 1000), float32]) -> Tensor[(1, 1000), float32] {
%1 = fn (%p0: Tensor[(1, 1000), float32], %p1: Tensor[(3000, 1000), float32], __dict__=meta[StrMap][0]) -> Tensor[(1, 3000), float32] {
%0 = nn.dense(%p0, %p1, units=None) // ty=Tensor[(1, 3000), float32]
%0
}
%2 = %1(%X, %y) // ty=Tensor[(1, 3000), float32]
%12 = fn (%p01: Tensor[(1, 3000), float32], __dict__=meta[StrMap][1]) -> Tensor[(1, 1000), float32] {
%3 = split(%p01, indices_or_sections=int64(3), axis=1) // ty=(Tensor[(1, 1000), float32], Tensor[(1, 1000), float32], Tensor[(1, 1000), float32])
%4 = %3.0
%5 = sigmoid(%4) // ty=Tensor[(1, 1000), float32]
%6 = %3.1
%7 = tanh(%6) // ty=Tensor[(1, 1000), float32]
%8 = %3.2
%9 = exp(%8) // ty=Tensor[(1, 1000), float32]
%10 = multiply(%7, %9) // ty=Tensor[(1, 1000), float32]
%11 = add(%5, %10) // ty=Tensor[(1, 1000), float32]
%11
}
%13 = %12(%2) // ty=Tensor[(1, 1000), float32]
%13
}

@masahi
masahiforce-pushed the opfusion-tuplegetitem branch from 7bee633 to abef41dCompareMarch 28, 2019 02:49
@masahi

Copy link
Copy Markdown
MemberAuthor

@tqchen@jroesch@MarisaKirisame@vinx13 can you help review?

CHECK(tuple_type);
bool has_reference = false;
for (auto ty : tuple_type->fields) {
if (ty.as<RefTypeNode>()) {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what if there is a reference inside? does it get recursively handled?

@masahimasahiMar 28, 2019

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tuple fields are recursively visited via call to ExprVisitor::VisitExpr_(op) below, even if it is a Reference nodes. Ref nodes are never fused with its parent TupleGetItemNode.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add the comment block to explain this so that future developers won't be confused here

@ajtulloch

Copy link
Copy Markdown
Contributor

Thanks, @masahi, this looks great and is strictly better than the current output.

I do think it would be quite interesting as a follow-up to see what it would look like in terms of perf if we enable fusing the Splits into the GRU, but it's easy to implement a injective GRUGates(..) op and schedule the fused Dense + GRUGate op.

Comment threadtests/python/relay/test_pass_fuse_ops.py Outdated

@ajtullochajtulloch left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great, thanks so much for this.

@masahi

masahi commented Mar 28, 2019

Copy link
Copy Markdown
MemberAuthor

@MarisaKirisame this is the IR for higher order gradient of tvm.relay.log after fusion. It is identical with or without this PR.

%62 = fn () -> (Tensor[(10, 4), float32], (Tensor[(10, 4), float32],)) {
%60 = fn (%x: Tensor[(10, 4), float32]) -> (Tensor[(10, 4), float32], (Tensor[(10, 4), float32],)) {
%1 = fn () -> () {
%0 = ()
%0
}
%2 = ref(%1)
%59 = {
let %x1: ref(fn () -> ()) = %2
%4 = fn (%p0: Tensor[(10, 4), float32], __dict__=meta[StrMap][0]) -> Tensor[(10, 4), float32] {
%3 = zeros_like(%p0)
%3
}
%5 = %4(%x)
%6 = ref(%5)
%7 = (%x, %6)
%58 = {
let %x2: (Tensor[(10, 4), float32], ref(Tensor[(10, 4), float32])) = %7
%40 = fn (%x4: (Tensor[(10, 4), float32], ref(Tensor[(10, 4), float32]))) -> (Tensor[(10, 4), float32], ref(Tensor[(10, 4), float32])) {
%39 = {
let %x5: (Tensor[(10, 4), float32], ref(Tensor[(10, 4), float32])) = %x4
%8 = %x5.0
%10 = fn (%p01: Tensor[(10, 4), float32], __dict__=meta[StrMap][1]) -> Tensor[(10, 4), float32] {
%9 = log(%p01)
%9
}
%11 = %10(%8)
%38 = {
let %x6: Tensor[(10, 4), float32] = %11
%13 = fn (%p02: Tensor[(10, 4), float32], __dict__=meta[StrMap][2]) -> Tensor[(10, 4), float32] {
%12 = zeros_like(%p02)
%12
}
%14 = %13(%x6)
%15 = ref(%14)
%37 = {
let %x7: ref(Tensor[(10, 4), float32]) = %15
%16 = %x1^
%36 = {
let %x8: fn () -> () = %16
%32 = fn () -> () {
%17 = %x7^
%31 = {
let %x10: Tensor[(10, 4), float32] = %17
%18 = %x5.1
%19 = %18^
%30 = {
let %x11: Tensor[(10, 4), float32] = %19
%20 = %x5.1
%25 = fn (%p03: Tensor[(10, 4), float32], %p1: Tensor[(10, 4), float32], %p2: Tensor[(10, 4), float32], __dict__=meta[StrMap][3]) -> Tensor[(10, 4), float32] {
%21 = ones_like(%p2)
%22 = multiply(%p1, %21)
%23 = divide(%22, %p2)
%24 = add(%p03, %23)
%24
}
%26 = %25(%x11, %x10, %8)
%27 = (%20 := %26)
%29 = {
let %x12: () = %27
%28 = %x8() // ty=()
%28
}
%29
}
%30
}
%31
}
%33 = (%x1 := %32)
%35 = {
let %x9: () = %33
%34 = (%x6, %x7)
%34
}
%35
}
%36
}
%37
}
%38
}
%39
}
%41 = %40(%x2)
%57 = {
let %x3: (Tensor[(10, 4), float32], ref(Tensor[(10, 4), float32])) = %41
%42 = %x3.1
%43 = %x3.0
%45 = fn (%p04: Tensor[(10, 4), float32], __dict__=meta[StrMap][4]) -> Tensor[(10, 4), float32] {
%44 = ones_like(%p04)
%44
}
%46 = %45(%43)
%47 = (%42 := %46)
%56 = {
let %x13: () = %47
%48 = %x1^
%49 = %48() // ty=()
%55 = {
let %x14: () = %49
%50 = %x3.0
%51 = %x2.1
%52 = %51^
%53 = (%52,)
%54 = (%50, %53)
%54
}
%55
}
%56
}
%57
}
%58
}
%59
}
%61 = %60(meta[relay.Constant][0] // ty=Tensor[(10, 4), float32])
%61
}
%62

@masahi

Copy link
Copy Markdown
MemberAuthor

@ajtulloch yes, fusing dense with split + other ops should be possible in principle, but our fusion algorithm is implemented such that dense and other "complex" ops (conv, pooling etc.) can only be fused with strictly elemwise ops. Relaxing this restriction requires major rethinking and rewrite of the algorithm.We can discuss this further in #2890

@ajtulloch

Copy link
Copy Markdown
Contributor

Yeah, no problem - this is great. Thank you for this :)

CHECK(tuple_type);
bool has_reference = false;
for (auto ty : tuple_type->fields) {
if (ty.as<RefTypeNode>()) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add the comment block to explain this so that future developers won't be confused here

@masahi

Copy link
Copy Markdown
MemberAuthor

@MarisaKirisame@tqchen I added a comment block on reference handling.

Comment threadsrc/relay/pass/fuse_ops.cc
@tqchen
tqchen merged commit 82e868a into apache:masterMar 29, 2019
wweic pushed a commit to wweic/tvm that referenced this pull request Apr 7, 2019
wweic pushed a commit to wweic/tvm that referenced this pull request Apr 7, 2019
wweic pushed a commit to wweic/tvm that referenced this pull request Apr 8, 2019
MarisaKirisame pushed a commit to MarisaKirisame/tvm that referenced this pull request Apr 9, 2019
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 9, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
@MarisaKirisameMarisaKirisame mentioned this pull request Apr 9, 2019
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 9, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 9, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
save
save
save
save
save
wweic pushed a commit to wweic/tvm that referenced this pull request Apr 10, 2019
wweic pushed a commit to neo-ai/tvm that referenced this pull request Apr 11, 2019
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 15, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
save
save
save
save
save
remove
remove
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 16, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
save
save
save
save
save
remove
remove
save
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 16, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
save
save
save
save
save
remove
remove
save
save
MarisaKirisame added a commit to MarisaKirisame/tvm that referenced this pull request Apr 16, 2019
lint
lint
save
save
add more case
save
error
lint
lint
commit
do
lint
save
fix lint
wrap it back as func
lint
save
remove dead comment
fix style
fix lint
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
address review feedback
pe now handle freevar. as a result preserving function is now trivial.
test
add basic test, implement pretty printing for generic function
test
lint
fix segfault
save
save
do
test
fix another error
address comment
commit
save
address review feedback
add test for invalidate, fix error in lookup
rename cont to boduy
fix error and add regression test
Update src/relay/pass/partial_eval.cc
Co-Authored-By: MarisaKirisame <lolisa@marisa.moe>
fix error, add test case
fix lint
remove extra line
fix some error
pe
commit
save
save
save
save
save (pe/dce broken)
[DOCKER] Pin flatbuffers checkout to the last release tag (apache#2823). (apache#2879)
[Relay][Text Format] Reverse CallNode Print Order (apache#2882)
[NNPACK] Modernize test (apache#2868)
[Relay] Add list update to prelude (apache#2866)
Add missing sgx includes (apache#2878)
Fix setting up hints for getaddrinfo (apache#2872)
[ARITH] RewriteSimplifier: improved cmp simplification (apache#2851)
do (apache#2883)
[RELAY][Frontend][TF] decompile tf control flow (apache#2830)
* decompile tf control flow
* Add docs
* remove import relay
* move tests under tensorflow frontend
* minor fix
Enhance upsample operator to adapt onnx opset version 9 (apache#2840)
Use version invariant rustfmt (apache#2886)
[Relay][Op] Add group conv2d dispatch to topi function (apache#2870)
* [Relay][Op] Add group conv2d dispatch to topi function
* Rerun tests
[Apps] [howto_deploy] fix cxx-flags order and build directory (apache#2888)
fix prelu, now can use on 2d input and add one test (apache#2875)
Add dense schedules to __init__ for cpu (apache#2855)
* Add dense schedules to __init__ for cpu
* Add documentation for topi::shape
* Add additional imports to topi CPU __init__.
[TESTS] Improve script robustness (apache#2893)
A number of test scripts use the '|| exit 1' idiom. This has two
issues, first process exit codes are defined to be in the range 0-255.
Second, more importantly, the idiom is fragile because it requires
that every possible failure point be explicitly coded. This patch
removes the idiom in favour of "set -e" as used in the docker scripts
as a more robust mechanism to ensure that script failures are always
caught and propagated by default.
[Relay] Fix name of bias in testing.mlp (apache#2892)
winograd_nnpack (apache#2721)
[Relay] Fix Relay ARM CPU depthwise spatial pack schedule alter op layout issue. (apache#2861)
* Fix Relay ARM CPU spatial pack depthwise alter op layout issue.
* Update tune_relay_arm.py
[TESTS] Import script robustness (set -u) (apache#2896)
Adopt the "set -u" idiom from the docker scripts as a mechanism to
improve future robustness.
[DOCKER] Upgrade ci-cpu to latest v0.50 (apache#2901)
Allow linking against MKLML (apache#2902)
[COMMUNITY] ASF mentors (apache#2906)
[Relay] Allow converting keras.layers.Sequential (apache#2842)
* Allow converting keras.layers.Sequential
* Use existing new_var function
* Only update expr when missing
* Add test
[Relay] clean up hd, change tl (apache#2917)
Turn on USE_SORT by default (apache#2916)
[TEST] Cache test data (apache#2921)
Unified error handling in NNVM and Relay frontends (apache#2828)
add support for mxnet smooth_l1 (apache#2905)
[Relay] Add support for TupleGetItem in op fusion (apache#2914)
[Relay, TOPI] Deformable conv2d (apache#2908)
* [Relay, TOPI] Add deformable conv2d
* Moved to op level2
* Fix lint
* Moved to level2 & bug fix
* Update comments
* Disabled flaky test of conv2d
TVM debugresult dump to Chrome Tracing (apache#2922)
[Relay] add test for second order ad (apache#2754)
* do second order
* add comment
* better name
* use tvm assert all close
* refire ci
Revert "[Relay] add test for second order ad (apache#2754)" (apache#2926)
This reverts commit f5ca991.
[Tutorial] Cache the test data in tutorial (apache#2923)
[AUTOTVM] Refactor measure build func (apache#2927)
Fix intersect of modular set (apache#2904)
Fix comment bugs and code style
[Relay, OpFusion] Fix handling TupleGetItem for nested tuples (apache#2929)
Consistent result of DetectLinearEquation() when an empy vars is passed (apache#2860)
[FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay. (apache#2850)
* [FRONTEND][ONNX] Some bug fixes and Shape operator fixed for relay.
* * test cases
* * ci error
Outdated renaming for flatten in ONNX converter (apache#2843)
[FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models. (apache#2864)
* [FRONTEND][TENSORFLOW] bug fix for tensorflow official slim models.
* * review comments
Fix vcvtph2ps codegen (apache#2925)
Port changes
More fixes
save
save
Changes to schedules and mxnet importer
save
save
save
save
save
remove
remove
save
save
revert
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants

@masahi@ajtulloch@tqchen@MarisaKirisame@Rasterer@vinx13