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

[RELAY][FRONTEND] Initial OneFlow frontend support. #8790

Merged
merged 37 commits into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
1c3a048
add relay.f.frontend.fm_oneflow support cnns
hhhfccz Jul 28, 2021
0e921f0
support cuda
hhhfccz Jul 28, 2021
73dcbb3
fix mobilenetv2 and reviews
hhhfccz Jul 28, 2021
31ee834
Merge pull request #1 from Oneflow-Inc/oneflow_fronted
BBuf Jul 30, 2021
5c057d4
fix: model without meta info
hhhfccz Aug 2, 2021
9804b51
support eager and yolo, add test
hhhfccz Aug 17, 2021
c9f2b65
fix: license
hhhfccz Aug 17, 2021
b8084bb
Merge pull request #2 from Oneflow-Inc/oneflow_fronted
BBuf Aug 17, 2021
866381e
add: tutorials
hhhfccz Aug 19, 2021
ef2df04
fix: support new graph
hhhfccz Sep 6, 2021
b6e98ed
Merge branch 'apache:main' into main
BBuf Jan 11, 2022
504b8b7
fix some comments
BBuf Jan 11, 2022
aea3dce
refine
BBuf Jan 11, 2022
2aa6584
fix concat op convert bug
BBuf Jan 12, 2022
82e3491
refine
BBuf Jan 12, 2022
a8db90a
refine
BBuf Jan 12, 2022
81cc89b
change cuda to cpu
BBuf Jan 13, 2022
c23c570
Merge branch 'apache:main' into main
BBuf Feb 23, 2022
d1fce9e
fix bug
BBuf Feb 23, 2022
6316f16
Merge branch 'main' of github.com:Oneflow-Inc/tvm into main
BBuf Feb 23, 2022
0111aea
fix ci error in tvm
BBuf Feb 27, 2022
ed76a45
fix pylint check
BBuf Feb 27, 2022
1b59201
delete useless file
BBuf Feb 27, 2022
a4698ff
add skimage package in docker
BBuf Feb 28, 2022
70a6d05
fix ci error
BBuf Feb 28, 2022
2b06f3f
fix bug
BBuf Feb 28, 2022
58d21db
add oneflow fronted test in ci
BBuf Mar 1, 2022
7edc8bf
merge conflict
BBuf Mar 1, 2022
1d56873
Merge branch 'main' into main
BBuf Mar 1, 2022
4e04653
fix tutorial
BBuf Mar 2, 2022
d78d8b2
try to find error in ci
BBuf Mar 2, 2022
2fa2d83
revert
BBuf Apr 9, 2022
6f1f7e9
merge conflict
BBuf Apr 9, 2022
57fcfef
Merge branch 'main' into main
BBuf Apr 9, 2022
636b8d8
Merge branch 'apache:main' into main
BBuf Apr 14, 2022
d745b43
black oneflow
BBuf Apr 14, 2022
649d729
Delete from_oneflow.py
BBuf Apr 15, 2022
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 @@ -23,6 +23,7 @@
from .mxnet import from_mxnet
from .mxnet_qnn_op_utils import quantize_conv_bias_mkldnn_from_var
from .keras import from_keras
from .oneflow import from_oneflow
from .onnx import from_onnx
from .tflite import from_tflite
from .coreml import from_coreml
Expand Down
Loading