Developer Reference for Intel® oneAPI Math Kernel Library for C
vslLoadStreamM
Creates a new stream and reads stream descriptive data, including stream state, from the memory buffer.
Syntax
errstatus = vslLoadStreamM ( &stream , memptr );
Include Files
mkl.h
Input Parameters
Name |
Type |
Description |
|---|---|---|
memptr |
const char* |
Memory buffer to load random stream descriptive data from |
Output Parameters
Name |
Type |
Description |
|---|---|---|
stream |
VSLStreamStatePtr* |
Pointer to a new random stream |
errstatus |
int |
Error status of the operation |
Description
The vslLoadStreamM function creates a new stream and reads stream descriptive data, including the stream state, from the memory buffer. A new random stream is created using the stream descriptive data from the memory pointer by memptr . If the stream cannot be read (for example, memptr is invalid), errstatus has a non-zero value. To save random stream to the memory, use vslSaveStreamM (Writes random stream descriptive data, including stream state, to a memory buffer.) function. Use the service routine vslGetStreamSize (Computes size of memory necessary to hold the random stream.) to determine the amount of memory sufficient to hold the random stream.
Product and Performance Information Performance varies by use, configuration and other factors. Learn more at www.Intel.com/PerformanceIndex . Notice revision #20201201
Return Values
- VSL_ERROR_OK, VSL_STATUS_OK
-
Indicates no error, execution is successful.
- VSL_ERROR_NULL_PTR
-
memptr is a NULL pointer.
- VSL_ERROR_MEM_FAILURE
-
System cannot allocate memory for internal needs.
- VSL_RNG_ERROR_BAD_MEM_FORMAT
-
Descriptive random stream format is unknown.
- VSL_RNG_ERROR_NONDETERMINISTIC_NOT_SUPPORTED
-
Non-deterministic random number generator is not supported.
- VSL_RNG_ERROR_ARS5_NOT_SUPPORTED
-
ARS-5 random number generator is not supported on the CPU running the application.