Hello to the Advisor team,
I'm compiling and linking my code as following :
COMPILE='ifort -g -O2 -I$/opt/intel/advisor_xe_2015/include/intel64'
$COMPILE -c Parcel_Update_8_8.F90
$COMPILE -o Parcel_Model_Advisor.x *.o -lm -L$/opt/intel/advisor_xe_2015/lib64 -ladvisor
rm *.o
In the compilation log file I'm getting an error : ''error #7002: Error in opening the compiled module file. Check INCLUDE paths. [ADVISOR_ANNOTATE] use advisor_annotate ! Add to each module that contains Intel Advisor annotations ''
I have inserted the annotations to one of the subroutines in the code as indicated by the Advisor tool :
use advisor_annotate ! Add to each module that contains Intel Advisor annotations
call annotate_site_begin( "MySite1" ) ! Place before the loop control statement to begin a parallel code region
! (parallel site).
call annotate_iteration_task( "MyTask1" ) ! Place at the start of loop body. This annotation identifies an entire body
! as a task
call annotate_site_end ! End the parallel code region, after task execution completes
What should I do for the ADVISOR_ANNOTATE module to be recognized during compilation ?
Thanks in advance,
Jack.