A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-2CC2B669-6A08-45F1-9F7B-99A45FD05D39
Visible to Intel only — GUID: GUID-2CC2B669-6A08-45F1-9F7B-99A45FD05D39
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.
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