jonicho
jonicho

Reputation: 65

Why do some functions of Intel IPP do not support unsigned bytes?

I noticed that some (maybe most, I didn't check all of them) functions of the Intel® Integrated Performance Primitives (IPP) do not support signed bytes (8s), such as SortAscend and SortDescend and Copy, for example.

I cannot think of a reason why this would be the case, does somebody else know?

Upvotes: 0

Views: 179

Answers (1)

Shanmukh-Intel
Shanmukh-Intel

Reputation: 145

functions of the Intel® Integrated Performance Primitives (IPP) do not support signed bytes (8s)

You could use <16 bit depth> signed integers which serves the purpose. Intel IPP is built using the compiler option /Zp16, which aligns the structure fields on the field size or 16 bytes if the size is greater than 16. You can also use the ippsMalloc function to align the allocated memory pointer on 64 bytes.

Upvotes: 0

Related Questions