Displaying 5 results from an estimated 5 matches for "polly_src".
2012 Oct 21
4
[LLVMdev] dragonegg polly support broken?
...m unclear on how I should modify the 'make polly-test' run in order
> for 'llvm-lit -v' to take effect and where to look for the additional information.
> Thanks in advance for any clarifications.
After you run 'make polly-test' once, you can just run
$ llvm-lit -v ${POLLY_SRC}/test
Like this you can easily pass the verbose flag.
>> This is due to the use of an old isl version. I will change configure to
>> fail if the isl version used is too old.
>>
>>> Are these darwin-specific or due to the fact that I am using isl 0.10 and
>>> cl...
2012 Oct 21
0
[LLVMdev] dragonegg polly support broken?
On Sun, Oct 21, 2012 at 02:31:50PM -0700, Tobias Grosser wrote:
> On 10/21/2012 12:47 PM, Jack Howarth wrote:
>> On Sun, Oct 21, 2012 at 11:58:43AM -0700, Tobias Grosser wrote:
>> ...
>>> Does attached patch work for you?
>>>
>>> Tobi
>>>
>>
>> Tobi,
>> Yes, with this patch current llvm/polly svn builds and runs 'make
2012 Oct 21
2
[LLVMdev] dragonegg polly support broken?
On 10/21/2012 12:47 PM, Jack Howarth wrote:
> On Sun, Oct 21, 2012 at 11:58:43AM -0700, Tobias Grosser wrote:
> ...
>> Does attached patch work for you?
>>
>> Tobi
>>
>
> Tobi,
> Yes, with this patch current llvm/polly svn builds and runs 'make polly-test'
> without issues in finding LLVMPolly.so. Thanks for fixing this so quickly.
Thanks for
2017 Jun 22
2
Legal names for Functions and other Identifiers
Thank You Chen !
On Thu, Jun 22, 2017 at 5:21 PM 陳韋任 <chenwj.cs97g at g2.nctu.edu.tw> wrote:
> Perhaps you can refer to [1]. Function name should be a global one.
>
> [1] http://llvm.org/docs/LangRef.html#identifiers
>
> HTH,
> chenwj
>
>
> 2017-06-22 16:35 GMT+08:00 SANJAY SRIVALLABH SINGAPURAM via llvm-dev <
> llvm-dev at lists.llvm.org>:
>
>>
2017 Jun 22
2
Legal names for Functions and other Identifiers
...patch
https://reviews.llvm.org/D33985, where I prefix the name of the source
function and the Scop ( A special kind of Region that Polly can optimize,
the name of the Scop is the name of the Region ) to the name of the PTX
kernel generated from the Scop. For e.g. The edits like the following to
<polly_src>/lib/CodeGen/PPCGCodeGeneration.cpp
<https://github.com/llvm-mirror/polly/blob/6b8cb877c2fa3ee0e626cac5811115a9c5c71b5b/lib/CodeGen/PPCGCodeGeneration.cpp#L1422>
achieves the above mentioned prefixing,
@@ -1419,7 +1438,9 @@ void GPUNodeBuilder::createKernel(__isl_take
isl_ast_node *Kernel...