search for: ompconst

Displaying 8 results from an estimated 8 matches for "ompconst".

Did you mean: pconst
2019 Dec 10
2
[PATCH] D69853: [OpenMP][NFCI] Introduce llvm/IR/OpenMPConstants.h
...gt; clang/lib/Sema/CMakeLists.txt > clang/lib/Sema/SemaOpenMP.cpp > clang/lib/Sema/SemaTemplateInstantiateDecl.cpp > clang/lib/Sema/TreeTransform.h > clang/lib/Serialization/ASTWriter.cpp > clang/lib/Serialization/ASTWriterStmt.cpp > llvm/include/llvm/Frontend/OpenMP/OMPConstants.h > llvm/include/llvm/Frontend/OpenMP/OMPKinds.def > llvm/lib/CMakeLists.txt > llvm/lib/Frontend/CMakeLists.txt > llvm/lib/Frontend/LLVMBuild.txt > llvm/lib/Frontend/OpenMP/CMakeLists.txt > llvm/lib/Frontend/OpenMP/LLVMBuild.txt > llvm/lib/Frontend/OpenMP/OMPC...
2019 Dec 10
3
[PATCH] D69853: [OpenMP][NFCI] Introduce llvm/IR/OpenMPConstants.h
...ib/Sema/SemaOpenMP.cpp > > > clang/lib/Sema/SemaTemplateInstantiateDecl.cpp > > > clang/lib/Sema/TreeTransform.h > > > clang/lib/Serialization/ASTWriter.cpp > > > clang/lib/Serialization/ASTWriterStmt.cpp > > > llvm/include/llvm/Frontend/OpenMP/OMPConstants.h > > > llvm/include/llvm/Frontend/OpenMP/OMPKinds.def > > > llvm/lib/CMakeLists.txt > > > llvm/lib/Frontend/CMakeLists.txt > > > llvm/lib/Frontend/LLVMBuild.txt > > > llvm/lib/Frontend/OpenMP/CMakeLists.txt > > > llvm/lib/Fronte...
2019 Dec 11
2
[PATCH] D69853: [OpenMP][NFCI] Introduce llvm/IR/OpenMPConstants.h
...clang/lib/Sema/SemaTemplateInstantiateDecl.cpp > > > > > clang/lib/Sema/TreeTransform.h > > > > > clang/lib/Serialization/ASTWriter.cpp > > > > > clang/lib/Serialization/ASTWriterStmt.cpp > > > > > llvm/include/llvm/Frontend/OpenMP/OMPConstants.h > > > > > llvm/include/llvm/Frontend/OpenMP/OMPKinds.def > > > > > llvm/lib/CMakeLists.txt > > > > > llvm/lib/Frontend/CMakeLists.txt > > > > > llvm/lib/Frontend/LLVMBuild.txt > > > > > llvm/lib/Frontend/Open...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
Hi, That patch was from an ongoing effort to consolidate OpenMP generation in clang. If memory serves the implementation there is still a little incomplete. It's supposed to use types from OMPConstants rather than ones it defined itself and the methods used to create the functions shouldn't need to be static. However attempting this caused a lot of errors so there might be an underlying problem related to the issues you're seeing. Another one of the errors I had to deal with was deali...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...gt; Johannes > > > > On 8/10/20 8:46 AM, Huber, Joseph wrote: > > Hi, > > > > That patch was from an ongoing effort to consolidate OpenMP generation in clang. If memory serves the implementation there is still a little incomplete. It's supposed to use types from OMPConstants rather than ones it defined itself and the methods used to create the functions shouldn't need to be static. However attempting this caused a lot of errors so there might be an underlying problem related to the issues you're seeing. Another one of the errors I had to deal with was deali...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...t; >> On 8/10/20 8:46 AM, Huber, Joseph wrote: > >>> Hi, > >>> > >>> That patch was from an ongoing effort to consolidate OpenMP generation in clang. If memory serves the implementation there is still a little incomplete. It's supposed to use types from OMPConstants rather than ones it defined itself and the methods used to create the functions shouldn't need to be static. However attempting this caused a lot of errors so there might be an underlying problem related to the issues you're seeing. Another one of the errors I had to deal with was deali...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...t; On 8/10/20 8:46 AM, Huber, Joseph wrote: >>>>> Hi, >>>>> >>>>> That patch was from an ongoing effort to consolidate OpenMP generation in clang. If memory serves the implementation there is still a little incomplete. It's supposed to use types from OMPConstants rather than ones it defined itself and the methods used to create the functions shouldn't need to be static. However attempting this caused a lot of errors so there might be an underlying problem related to the issues you're seeing. Another one of the errors I had to deal with was deali...
2020 Aug 10
2
Orc JIT v2 breaks OpenMP in 11.x branch?
Hi Geoff, Nothing in that backtrace leaps out at me. Based on the stack trace and description my first guess would be a clang misconfiguration rather than a JIT bug. How is that clang invocation being made? Is it from inside a callback from ORC, or is it before you add your module to the JIT? -- Lang. On Mon, Aug 3, 2020 at 5:41 AM Geoff Levner <glevner at gmail.com> wrote: > Here,