Add conv1d support in BYOC TRT by converting conv1d to conv2d - #9324
Merged
Conversation
ziyu-guo
requested review from
MarisaKirisame,
ZihengJiang,
anijain2305,
areusch,
comaniac,
jroesch,
junrushao,
jwfromm,
kazum,
liangfu,
masahi,
mbrookhart,
merrymercy,
slyubomirsky,
tmoreau89,
tqchen,
vinx13,
wweic,
yzhliu and
zhiics
as code owners
October 19, 2021 18:12
ziyu-guo
force-pushed
the
add-conv1d-byoc-trt
branch
from
October 19, 2021 18:26
7301d73 to
f6c5392
Compare
ziyu-guo
force-pushed
the
add-conv1d-byoc-trt
branch
4 times, most recently
from
October 19, 2021 19:10
44742a9 to
3ee7d34
Compare
ziyu-guo
force-pushed
the
add-conv1d-byoc-trt
branch
from
October 20, 2021 00:54
3ee7d34 to
515f729
Compare
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Jan 7, 2022
…#9324) Co-authored-by: ziyu.guo <ziyu.guo@bytedance.com>
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Jan 13, 2022
…#9324) Co-authored-by: ziyu.guo <ziyu.guo@bytedance.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently BYOC TRT does not support conv1d due to no native conv1d in TRT. In this PR we added support for conv1d by converting it to conv2d, similar to torchtrt here.