Closed daoxian closed 1 year ago
Hi @daoxian
Would you please share more information about this issue? What's the use case for this configuration input (1,1,2,2), weight(1,1,3,3), stride=1, padding=0
? What model are you using?
Hi @daoxian
Please see the following patch fixing the problem https://review.mlplatform.org/c/ml/ComputeLibrary/+/10417
Hope this helps.
version 22.08, in NEDeconvolutionLayer::validate()
I wonder why should weights->dimension(idx_w) <= out_x ? For the simplest example: input (1,1,2,2), weight(1,1,3,3), stride=1, padding=0 and the output shape should be output(1,1,4,4). Then in the validate() out_x should be 2, which < weights->dimension(idx_w), and the validate() will fail