[RELAY][DYN] Implementation of the dynamic pad operator (#6284)
authorLily Orth-Smith <lilyorthsmith@gmail.com>
Thu, 20 Aug 2020 01:57:05 +0000 (18:57 -0700)
committerGitHub <noreply@github.com>
Thu, 20 Aug 2020 01:57:05 +0000 (18:57 -0700)
commitf577aa633f83e67df827496a79a03afc3bee81f5
tree9367263ea87d9c6359725511cec9b4fe4b489906
parentadf39c65e564b7ab4fb758f7983e3a704eae68e0
[RELAY][DYN] Implementation of the dynamic pad operator (#6284)
16 files changed:
include/tvm/relay/attrs/nn.h
include/tvm/topi/nn.h
python/tvm/relay/op/dyn/nn/__init__.py [new file with mode: 0644]
python/tvm/relay/op/dyn/nn/_make.py [new file with mode: 0644]
python/tvm/relay/op/dyn/nn/_nn.py [new file with mode: 0644]
python/tvm/relay/op/nn/nn.py
python/tvm/te/hybrid/calls.py
python/tvm/te/hybrid/runtime.py
python/tvm/topi/nn/upsampling.py
src/relay/op/dyn/nn/pad.cc [new file with mode: 0644]
src/relay/op/make_op.h
src/relay/op/nn/pad.cc
src/relay/transforms/dynamic_to_static.cc
src/relay/transforms/pattern_util.h
tests/python/relay/dyn/test_dynamic_op_level2.py [new file with mode: 0644]
tests/python/relay/test_pass_dynamic_to_static.py