I have this code:
ANNOTATE_SITE_BEGIN(solve);
for(size_t i=0; i<wrapperIndexes.size(); i++){
ANNOTATE_ITERATION_TASK(localizeKeypoint);
const int r = wrapperIndexes.r;
const int c = wrapperIndexes.c;
const float val = localWrappers[wrapperIndexes.i].cur.at<float>(wrapperIndexes.r,wrapperIndexes.c);
if ( (val > positiveThreshold && (isMax(val, localWrappers[wrapperIndexes.i].cur, r, c) && isMax(val, localWrappers[wrapperIndexes.i].low, r, c) && isMax(val, localWrappers[wrapperIndexes.i].high, r, c))) ||
(val < negativeThreshold && (isMin(val, localWrappers[wrapperIndexes.i].cur, r, c) && isMin(val, localWrappers[wrapperIndexes.i].low, r, c) && isMin(val, localWrappers[wrapperIndexes.i].high, r, c))) )
// either positive -> local max. or negative -> local min.
localizeKeypoint(r, c, localCurSigma[wrapperIndexes.i], localPixelDistances[wrapperIndexes.i], localWrappers[wrapperIndexes.i]);
}
ANNOTATE_SITE_END();
Which is compiled with icpc 2017 and compiler options:
INTEL_OPT=-O3 -simd -xCORE-AVX2 -parallel -qopenmp -fargument-noalias -ansi-alias -no-prec-div -fp-model fast=2
INTEL_PROFILE=-g -qopt-report=5 -Bdynamic -shared-intel -debug inline-debug-info -qopenmp-link dynamic -parallel-source-info=2 -ldl
However, after running a dependency analysis, a "Missing start task" is returned:
Why this happens?
I'm sorry, but I don't know how to attach the binary file of the application and the input image as argument, I hope that this is enough (please let me know otherwise).