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 CPUExecutionProvider to the ONNX E2E #1398

Merged
merged 34 commits into from
Jan 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
863e7a2
Add CPU EP
kshpv Nov 30, 2022
c408986
Fix bug
kshpv Nov 30, 2022
5e2f944
Update report creation
kshpv Dec 1, 2022
f042429
Merge remote-tracking branch 'remote/develop' into onnx_e2e_cpu
kshpv Dec 1, 2022
7421d95
Update configs
kshpv Dec 2, 2022
0cd4a50
Update reference; Update generate_report
kshpv Dec 2, 2022
35d8deb
Add ov_ep_only parameter
kshpv Dec 4, 2022
fabbd1f
Fix bug
kshpv Dec 5, 2022
a2e09a0
Fix bug
kshpv Dec 5, 2022
bef3420
Fix pylint
kshpv Dec 6, 2022
2c7bc74
Add meta to report
kshpv Dec 7, 2022
a597067
Update html generation based on yattag
kshpv Dec 7, 2022
4fc835b
Update generating table
kshpv Dec 8, 2022
86e073b
Merge cells
kshpv Dec 8, 2022
2fea9bc
Fix typo
kshpv Dec 8, 2022
87e7ffd
Fix merging cells of the Provider names
kshpv Dec 9, 2022
35c9e47
Divide is_ov_ep_only to disable-ov-ep and enable-cpu-ep
kshpv Dec 9, 2022
f3fcfc0
Fix pylint
kshpv Dec 9, 2022
977fb2b
Fix typo
kshpv Dec 9, 2022
2dd6e83
Make getting row colors before generating final df
kshpv Dec 11, 2022
425b616
Update config to not override masks
kshpv Dec 13, 2022
5c7ebc6
Add commands for all providers
kshpv Dec 13, 2022
0822c79
Update Makefile
kshpv Dec 13, 2022
3c2b458
Add target_tags to quanitze only on ones
kshpv Dec 13, 2022
639ce68
Update Makefile
kshpv Dec 14, 2022
a0d45da
Add extra line
kshpv Dec 14, 2022
dd0ac14
Add --model_names option
kshpv Dec 20, 2022
759827a
Merge remote-tracking branch 'remote/develop' into onnx_e2e_cpu
kshpv Dec 20, 2022
a7f21c5
Update Makefile
kshpv Dec 20, 2022
12a94fb
logger
kshpv Dec 20, 2022
d0624c3
Merge remote-tracking branch 'remote/develop' into onnx_e2e_cpu
kshpv Jan 11, 2023
e9a3d97
Update yattag version
kshpv Jan 11, 2023
4ef409f
Remove e2e target in makefile
kshpv Jan 12, 2023
e4e2033
Update doc
kshpv Jan 12, 2023
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
Prev Previous commit
Next Next commit
Add target_tags to quanitze only on ones
  • Loading branch information
kshpv committed Dec 13, 2022
commit 3c2b458f640a86ca67b1c0177ab87ab42c905539
3 changes: 2 additions & 1 deletion tests/onnx/test_e2e_ptq.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ def test_ptq_model(self, task_type, model_name, model_dir, data_dir, anno_dir, c
"-o", str(ckpt_dir),
"-s", str(data_dir),
"-a", str(anno_dir),
"-ss", str(ptq_size)
"-ss", str(ptq_size),
"--target_tags", 'OpenVINOExecutionProvider'
]

com_str = ' '.join(com_line)
Expand Down