chengven027-intellif opened a new pull request, #12523:
URL: https://github.com/apache/tvm/pull/12523

   Related PR: #12500 
   hi, 
   I am sorry i made a mistake about group_conv3d.
   There is three about thr caculate about `in_channel // groups // ic_bn`.
   1. if `in_channel // groups // ic_bn`  == 0, It means that we only need to 
tile to 1
   2. if `out = in_channel // groups // ic_bn`  != 0, but  the `out * ic_bn * 
group < in_channel` . It means that we  need to tile to `out +1`
   3.   if `out = in_channel // groups // ic_bn`  != 0, but  the `out * ic_bn * 
group == in_channel` . It means that we  need to tile to `out `
   In the last PR, I didn`t consider the second case.  So this PR I fix it.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to