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

Add a PaddlePaddle Frontend #8645

Merged
merged 36 commits into from
Aug 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5b39c79
Merge pull request #2 from apache/main
jiangjiajun Aug 3, 2021
22a20be
fix some problems for matmul
Aug 3, 2021
1a7f180
fix some problems for matmul
Aug 3, 2021
3f604e9
add alpha parameter for matmul
Aug 4, 2021
fe6de07
remove unnecessary condition
Aug 4, 2021
dfb9cb1
add TranslatedLayer which support model loaded by jit.load
Aug 4, 2021
36ab16e
add mul operator support
Aug 5, 2021
63b0138
Add padding mode support for conv/pool2d
wjj19950828 Aug 5, 2021
dbfa687
Merge branch 'paddle_frontend' into add_paddingmode_support
wjj19950828 Aug 5, 2021
1967d46
support 4 two-tuples
wjj19950828 Aug 5, 2021
360989b
Merge branch 'add_paddingmode_support' of https:/wjj19950…
wjj19950828 Aug 5, 2021
f4932bf
add paddle test case
heliqi Aug 5, 2021
0c92955
add paddle conv2d case
heliqi Aug 5, 2021
1e85fc0
Merge pull request #4 from heliqi/paddle_frontend
jiangjiajun Aug 6, 2021
b0b8094
update test_forward.py
Aug 6, 2021
35fccb2
fix paddle convert_matmul
heliqi Aug 6, 2021
094f44e
add paddle multiply and matmul op test case
heliqi Aug 6, 2021
2b0a14c
Merge pull request #5 from heliqi/paddle_frontend
jiangjiajun Aug 6, 2021
9df2340
Merge pull request #3 from wjj19950828/add_paddingmode_support
jiangjiajun Aug 10, 2021
4520515
add test case and fix bug
heliqi Aug 11, 2021
1d599c1
delete import pandas
heliqi Aug 11, 2021
75ef19b
add paddlepaddle tests
heliqi Aug 13, 2021
67ca20d
modify the variable name of convert_reshape
heliqi Aug 13, 2021
b31fa57
Merge pull request #6 from heliqi/paddle_frontend
jiangjiajun Aug 13, 2021
6f91fc5
formatting
heliqi Aug 13, 2021
a0aee15
formatting
heliqi Aug 13, 2021
544dfde
Merge pull request #7 from heliqi/paddle_frontend
jiangjiajun Aug 13, 2021
80d308a
use black to format python code
Aug 13, 2021
202893c
pylint check
heliqi Aug 17, 2021
ad758c8
Merge pull request #10 from heliqi/paddle_frontend
jiangjiajun Aug 17, 2021
a281d60
Remove fluid api
jiangjiajun Aug 18, 2021
c2d4bf5
Merge pull request #11 from jiangjiajun/jason
jiangjiajun Aug 18, 2021
be0e04e
black format
heliqi Aug 18, 2021
2a82fdb
Merge pull request #12 from heliqi/paddle_frontend
jiangjiajun Aug 18, 2021
96f8ad3
Merge branch 'upstream-main' into paddle_frontend
junrushao Aug 23, 2021
b58108d
Merge remote-tracking branch 'upstream/main' into paddle_frontend
junrushao Aug 26, 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
1 change: 1 addition & 0 deletions python/tvm/relay/frontend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@
from .darknet import from_darknet
from .pytorch import from_pytorch
from .caffe import from_caffe
from .paddlepaddle import from_paddle
from .change_datatype import ChangeDatatype
Loading