Intel® Integrated Performance Primitives (Intel® IPP) Developer Guide and Reference
RandUniformGetSize
Computes the length of the uniform distribution generator structure.
Syntax
IppStatus ippsRandUniformGetSize_8u(int* pRandUniformStateSize);
IppStatus ippsRandUniformGetSize_16s(int* pRandUniformStateSize);
IppStatus ippsRandUniformGetSize_32f(int* pRandUniformStateSize);
IppStatus ippsRandUniformGetSize_64f(int* pRandUniformStateSize);
Include Files
ipps.h
Domain Dependencies
Headers: ippcore.h, ippvm.h
Libraries: ippcore.lib, ippvm.lib
Parameters
pRandUniformStateSize |
Pointer to the computed value of size in bytes of the generator specification structure. |
Description
This function computes the length (in bytes) pRandUniformStateSize of the uniform distribution generator structure that is used by the ippsRandUniformInit function.
The example of using this function is similar to the example provided with the Histogram function description.
Return Values
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error when the pointer pRandUniformStateSize is NULL . |
See Also
RandUniformInit Initializes a noise generator with uniform distribution.