The names of Fortran routines in the convolution and correlation API are written in lowercase (vslsconvexec), while the names of Fortran types and constants are written in uppercase. The names are not case-sensitive.
In C, the names of routines, types, and constants are case-sensitive and can be lowercase and uppercase (vslsConvExec).
The names of routines have the following structure:
vsl[datatype]{Conv|Corr}<base name> for the C interface
vsl[datatype]{conv|corr}<base name> for the Fortran interface
where
vsl is a prefix indicating that the routine belongs to Vector Statistical Library of Intel® MKL.
[datatype] is optional. If present, the symbol specifies the type of the input and output data and can be s (for single precision real type), d (for double precision real type), c (for single precision complex type), or z (for double precision complex type).
Conv or Corr specifies whether the routine refers to convolution or correlation task, respectively.
<base name> field specifies a particular functionality that the routine is designed for, for example, NewTask, DeleteTask.
In this document, routines are often referred to by their base name (NewTask) when this does not lead to ambiguity. In the routine reference, the full name (vslsConvNewTask, vsldCorrNewTask) is always used in prototypes and code examples.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.