Visible to Intel only — GUID: GUID-C3672249-C8D5-4960-B624-037B83D43648
Visible to Intel only — GUID: GUID-C3672249-C8D5-4960-B624-037B83D43648
Dependencies Problem and Message Types
The Intel® Advisor Dependencies analysis identifies various data sharing problems and messages. This reference section describes these problems and messages, and offers possible correction strategies.
Problem Type Name | Severity and Cause |
---|---|
Error. Occurs when a task does not release a lock before the task ends. |
|
Error. Occurs when a task writes a value that a different task reads. If not fixed prior to conversion to parallel code, a Data Communication problem could result in a data race. |
|
Error. Occurs when a task writes a value that a different (child) task reads. If not fixed prior to conversion to parallel code, a Data Communication problem could result in a data race. |
|
Warning. Occurs when a task execution accesses a memory location more than once, under the control of different locks. |
|
Warning. Occurs when two or more locks are acquired in a different order in two task executions, potentially leading to a deadlock when the program's tasks execute in parallel. |
|
Error. Occurs when two tasks write to a shared memory location. That is, a task writes to a variable with a new value but does not read the same value generated by a prior task. If not fixed prior to conversion to parallel code, this Memory Reuse problem could result in a data race. |
|
Error. Occurs when two tasks write to a shared memory location, where a parent task overwrites a variable with a new value that was read by a previously executed child task in the same site. If not fixed prior to conversion to parallel code, this Memory Reuse, Child Task problem could result in a data race. |
|
Remark. Occurs when a task accesses a memory location marked by an ANNOTATE_OBSERVE_USES annotation. In this case, this problem provides informational feedback only and no action is required. This is useful for finding uses of specified memory locations while a task is executing. |
|
Error. Occurs when a site-begin annotation is executed but the corresponding site-end annotation is not executed before the thread or application exits. |
|
Error. Occurs when a task-begin annotation is executed but the corresponding task-end annotation is not executed before the site, thread, or application exits. |
|
Error. Occurs when an end-site annotation is executed but there is no active site. |
|
Error. Occurs when an end task annotation is executed but there is no active task. |
|
Warning. Occurs when a parallel site was executed but no task annotations were executed in the dynamic extent of the active parallel site. |
|
Warning. Occurs when a parallel site was executed but annotations for only one task instance were executed in the dynamic extent of the active parallel site. This may be the expected behavior, or it may indicate an error in the placement of annotations or a data set that is not well suited for parallelism. |
|
Error. Occurs when a task-begin annotation is executed that is not within an active parallel site. |
|
Remark. 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. |
|
Remark. In this case, this message provides informational feedback and no action is required. |
|
Error. Occurs when an unhandled exception is detected that causes the application program to crash. |