Changes the value of the parameter start in the convolution or correlation task descriptor.
Fortran:
status = vslconvsetstart(task, start)
status = vslcorrsetstart(task, start)
C:
status = vslConvSetStart(task, start);
status = vslCorrSetStart(task, start);
The FORTRAN 77 interfaces are specified in the mkl_vsl.f77 include file, the Fortran 90 interfaces are specified in the mkl_vsl.f90 include file, and the C interfaces are specified in the mkl_vsl_functions.h include file.
Name |
Type |
Description |
---|---|---|
task |
FORTRAN 77: INTEGER*4 task(2) for vslconvsetstart INTEGER*4 task(2) for vslcorrsetstart Fortran 90: TYPE(VSL_CONV_TASK) for vslconvsetstart TYPE(VSL_CORR_TASK) for vslcorrsetstart C: VSLConvTaskPtr for vslConvSetStart VSLCorrTaskPtr for vslCorrSetStart |
Pointer to the task descriptor. |
start |
FORTRAN 77: INTEGER Fortran 90: INTEGER, DIMENSION (*) C: const int[] |
New value of the parameter start. |
Name |
Type |
Description |
---|---|---|
status |
FORTRAN 77: INTEGER Fortran 90: INTEGER C: int |
Current status of the task. |
The SetStart routine sets the value of the parameter start for the operation of convolution or correlation. In a one-dimensional case, this parameter points to the first element in the mathematical result that should be stored in the output array. In a multidimensional case, start is an array of indices and its length is equal to the number of dimensions specified by the parameter dims. For more information about the definition and effect of this parameter, see Data Allocation.
During the initial task descriptor construction, the default value for start is undefined and this parameter is not used. Therefore the only way to set and use the start parameter is via assigning it some value by one of the SetStart routines.
Copyright © 1994 - 2010, Intel Corporation. All rights reserved.