v?Sin
v?Sin
Computes sine of vector elements.
Syntax
vsSin
(
n
,
a
,
y
)
;
vsSinI(n, a, inca, y, incy);
vmsSin
(
n
,
a
,
y
,
mode
)
;
vmsSinI(n, a, inca, y, incy, mode);
vdSin
(
n
,
a
,
y
)
;
vdSinI(n, a, inca, y, incy);
vmdSin
(
n
,
a
,
y
,
mode
)
;
vmdSinI(n, a, inca, y, incy, mode);
vcSin
(
n
,
a
,
y
)
;
vcSinI(n, a, inca, y, incy);
vmcSin
(
n
,
a
,
y
,
mode
)
;
vmcSinI(n, a, inca, y, incy, mode);
vzSin
(
n
,
a
,
y
)
;
vzSinI(n, a, inca, y, incy);
vmzSin
(
n
,
a
,
y
,
mode
)
;
vmzSinI(n, a, inca, y, incy, mode);
Include Files
- mkl.h
Input Parameters
Name | Type | Description |
---|---|---|
n | const MKL_INT | Specifies the number of elements to be calculated. |
a | const float* for vsSin , vmsSin const double* for vdSin , vmdSin const MKL_Complex8* for vcSin , vmcSin const MKL_Complex16* for vzSin , vmzSin | Pointer to an array that contains the input vector a . |
inca , incy | const MKL_INT | Specifies increments for the elements of a and y . |
mode | const MKL_INT64 | Overrides global VM mode setting for this function call. See vmlSetMode for possible values and their description. |
Output Parameters
Name | Type | Description |
---|---|---|
y | float* for vsSin , vmsSin double* for vdSin , vmdSin MKL_Complex8* for vcSin , vmcSin MKL_Complex16* for vzSin , vmzSin | Pointer to an array that contains the output vector y . |
Description
The function computes sine of vector elements.
Note that arguments
abs(
and a
[i])
≤ 213
abs(
for single and double precisions respectively are called fast computational path. These are trigonometric function arguments for which VM provides the best possible performance. Avoid arguments that do not belong to the fast computational path in the VM High Accuracy (HA) and Low Accuracy (LA) functions. Alternatively, you can use VM Enhanced Performance (EP) functions that are fast on the entire function domain. However, these functions provide less accuracy.a
[i])
≤ 216
Argument | Result | VM Error Status | Exception |
---|---|---|---|
+0 | +0 | ||
-0 | -0 | ||
+ ∞ | QNAN | VML_STATUS_ERRDOM | INVALID |
- ∞ | QNAN | VML_STATUS_ERRDOM | INVALID |
QNAN | QNAN | ||
SNAN | QNAN | INVALID |
Specifications
for special values of the complex functions are defined according to the following formula
Sin(z) = -i*Sinh(i*z)
.Optimization Notice
|
---|
Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice.
Notice revision #20110804
|
This notice covers the following instruction sets: SSE2, SSE4.2, AVX2, AVX-512.