CARVIEW |
Navigation Menu
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Add support for conv2d explicit quantization #57160
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
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
f5ee20b
to
6ad0171
Compare
Rebase to the latest develop branch and fix the code conflict. |
Fix some CI failures (add timeout and pre-commit). |
CI status
2023-09-25 23:43:43 0. Unittest is not allowed to be disabled.
2023-09-25 23:43:43 You must have one RD (kolinwei(Recommend), wanghuancoder, luotao1, QingshuChen, qili93 or ZzSean or Aurelius84) approval for the usage of @unittest.skip or @unittest.skipIf.
2023-09-25 23:43:43 +@unittest.skipIf(
2023-09-25 23:43:43 +@unittest.skipIf(
2023-09-25 23:43:43 +@unittest.skipIf(
2023-09-25 23:43:43 +@unittest.skipIf(
2023-09-25 23:43:43 1. You must have one QA (XieYunshen(Recommend) or chalsliu) approval for setting parameter RUN_TYPE as EXCLUSIVE, DIST, NIGHTLY, EXCLUSIVE:NIGHTLY or DISTNIGHTLY, or setting parameter SERIAL, or setting TIMEOUT properties.
2023-09-25 23:43:43 The corresponding lines are as follows:
2023-09-25 23:43:43 test/ir/inference/CMakeLists.txt
2023-09-25 23:43:43 + set_tests_properties(test_trt_explicit_quantization_resnet PROPERTIES TIMEOUT
2023-09-25 23:43:43 + PROPERTIES TIMEOUT 300)
2023-09-25 23:43:43 For more information, please refer to:https://github.com/PaddlePaddle/Paddle/wiki/PaddlePaddle-Unit-test-specification
2023-09-25 23:43:43 There are 2 approved errors.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM for unittest.skipIf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM for set_tests_properties(test_trt_explicit_quantization_resnet PROPERTIES TIMEOUT 300) set_tests_properties(test_trt_explicit_quantization_mobilenet PROPERTIES TIMEOUT 300)
* Upgreade OneDNN to v3.2 * disable MKLDNNN in windows visual studio 2017 * disable MKLDNNN in windows visual studio 2017 * modify less version * remove error test * remove error test * remove error test * add debug * remove in line 187 * fix error in pr #57160
* Add support for conv2d explicit quantization. Add interface to check whether use explicit quantization or not in TRT engine
* Upgreade OneDNN to v3.2 * disable MKLDNNN in windows visual studio 2017 * disable MKLDNNN in windows visual studio 2017 * modify less version * remove error test * remove error test * remove error test * add debug * remove in line 187 * fix error in pr PaddlePaddle#57160
* Add support for conv2d explicit quantization. Add interface to check whether use explicit quantization or not in TRT engine
* Upgreade OneDNN to v3.2 * disable MKLDNNN in windows visual studio 2017 * disable MKLDNNN in windows visual studio 2017 * modify less version * remove error test * remove error test * remove error test * add debug * remove in line 187 * fix error in pr PaddlePaddle#57160
* Add support for conv2d explicit quantization. Add interface to check whether use explicit quantization or not in TRT engine
* Add support for conv2d explicit quantization. Add interface to check whether use explicit quantization or not in TRT engine
* Upgreade OneDNN to v3.2 * disable MKLDNNN in windows visual studio 2017 * disable MKLDNNN in windows visual studio 2017 * modify less version * remove error test * remove error test * remove error test * add debug * remove in line 187 * fix error in pr PaddlePaddle#57160
PR types
New features
PR changes
Others
Description
This PR adds conv2d support for explicit quantization.