Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

Partial sum/adjacent difference with IPP

overspawn
Beginner
580 Views
Is there a way to compute partial sums or adjacent differences with IPP?

Partial sum is:

DST[0]= SRC[0]
DST= SRC+DST[i-1] for i > 0

Adjacent difference is (roughly) reverse operation:
DST = SRC-SRC[i-1]
0 Kudos
3 Replies
Intel_C_Intel
Employee
580 Views

Hi,

No, we do not provide such operations, at least for now. So,you can submityour requeston Premier service. By the way, where do you think they would be useful?

Regards,
Vladimir

0 Kudos
overspawn
Beginner
580 Views
I use partial_sum to compute vertex positions along polygon's perimeter based on known edge lengths.
These functions are part of C++ STL so I guess there is a lot of other applications.
0 Kudos
Intel_C_Intel
Employee
580 Views

If you feel such functionality useful, please submit your request on Premier site.

Regards,
Vladimir

0 Kudos
Reply