Intel® Advisor User Guide

ID 766448
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

Parallel Site Information

Occurs when execution enters a parallel site. This confirms that your program and its data are executing the annotations you inserted during execution of the Dependencies tool analysis. In this case, this message provides informational feedback only and no action is required.

Problem type: Parallel date information

ID

Code Location

Description

1

Parallel site

Represents the location and associated call stack of the parallel site.

Example

ANNOTATE_SITE_BEGIN(name_site1);  // Begin parallel site
for (i = 0; i < n; ++i) 
{
    ANNOTATE_ITERATION_TASK(name_task1);
    process(i);

}
ANNOTATE_SITE_END();    // End parallel site