mirror of https://github.com/opencv/opencv.git
Merge pull request #24367 from alexlyulkov:al/fixed-cumsum-inplace-flag
Fixed CumSum layer inplace flag #24367 When exclusive is false: dst[i] = dst[i-1] + src[i] When exclusive is true: dst[i] = dst[i-1] + src[i-1] So CumSum layer can be inplace only when exclusive flag is false.pull/24422/head
parent
7757759205
commit
014e8485b5
2 changed files with 6 additions and 1 deletions
Loading…
Reference in new issue