-
Notifications
You must be signed in to change notification settings - Fork 1k
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
I'm dying to know how to implement the int8 winograd in conv3x3s1 #369
Comments
Summoning @tprimak or @nshustrov to comment on the nuances of the implementation. |
@BUG1989, the implementation of int8 winograd convolution in MLK-DNN does not require special quantization. The approach to quantization of input data and weights is the same with quantization used for direct int8 convolution with unsigned int8 input and signed int8 weights. All needed data adjustment happens in the weights reorder and transformation of input and output data. |
I see. Thank you very much for your help.And the quantize of weights before or after winograd transformation ? |
Quantization is independent on the Winograd algorithm itself. We apply the same quantization scheme and the same parameters for all convolution implementations, including direct, GEMM and Winograd. |
Thank you very much for your advice. I have realized it in other opensource project.I have implemented the int8 winograd F(2,3) in arm platform and it has the same accuracy as original int8 conv3x3s1 : ) |
@BUG1989 can show the opensource project name or address, which you find int8 winograd in it? |
@xiaoweiChen The detail codes,please see the two functions:
|
@BUG1989 Thanks for your sharing. :) |
I find the mkl-dnn has been supported the int8 winograd in convolution.
Is there any paper to introduce how to quantization winograd.
Thanks a lot!
The text was updated successfully, but these errors were encountered: