[llvm-bugs] [Bug 30856] New: Merge r277992 into the 3.9 branch

via llvm-bugs llvm-bugs at lists.llvm.org
Mon Oct 31 12:38:17 PDT 2016


https://llvm.org/bugs/show_bug.cgi?id=30856

            Bug ID: 30856
           Summary: Merge r277992 into the 3.9 branch
           Product: OpenMP
           Version: unspecified
          Hardware: Macintosh
                OS: MacOS X
            Status: NEW
          Severity: normal
          Priority: P
         Component: Runtime Library
          Assignee: unassignedbugs at nondot.org
          Reporter: howarth.mailing.lists at gmail.com
                CC: llvm-bugs at lists.llvm.org
    Classification: Unclassified

I would like to propose merging the change...

r277992 | hahnfeld | 2016-08-08 06:08:14 -0400 (Mon, 08 Aug 2016) | 19 lines

Do not block on explicit task depending on proxy task

Consider the following code:

    int dep;
    #pragma omp target nowait depend(out: dep)
    {
        sleep(1);
    }
    #pragma omp task depend(in: dep)
    {
        printf("Task with dependency\n");
    }
    printf("Doing some work...\n");

In its current state the runtime will block on the second task and not
continue execution.

Differential Revision: https://reviews.llvm.org/D23116

to 3.9 branch for the 3.9.1 release

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20161031/e6e5b0be/attachment.html>


More information about the llvm-bugs mailing list