The names of the Fortran routines in the VSL Summary Statistics are in lowercase (vslssseditquantiles), while the names of types and constants are in uppercase. The names are not case-sensitive.
In C, the names of the routines, types, and constants are case-sensitive and can be lowercase and uppercase (vslsSSEditQuantiles).
The names of routines have the following structure:
vsl[datatype]SS<base name> for the C interface
vsl[datatype]ss<base name> for the Fortran interface
where
vsl is a prefix indicating that the routine belongs to the Vector Statistical Library of Intel MKL.
[datatype] specifies the type of the input and/or output data and can be s (single precision real type), d (double precision real type), or i (integer type).
SS/ss indicates that the routine is intended for calculations of the VSL Summary Statistics estimates.
<base name> specifies a particular functionality that the routine is designed for, for example, NewTask, Compute, DeleteTask.
The VSL Summary Statistics routine DeleteTask for deletion of the task is independent of the data type and its name omits the [datatype] field.
This document generally refers to routines by their base names (NewTask) if such reference does not lead to ambiguity. The routine prototypes and code examples contain full routine names (vslsSSNewTask, vsldSSNewTask).
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.