Displaying 20 results from an estimated 127 matches for "unidentifi".
Did you mean:
unidentifie
2013 Oct 28
2
[LLVMdev] Loop vectorizer dosen't find loop bounds
...+ b[ i ];
c[ width + i ] = a[ width + i ] + b[ width + i ];
}
}
using the following commands
clang -emit-llvm -S loop.c
opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
LV: Checking a loop in "bar"
LV: Found a loop: for.body
LV: Found an induction variable.
LV: Found an unidentified write ptr: float* %c
LV: Found an unidentified write ptr: float* %c
LV: Found an unidentified read ptr: float* %a
LV: Found an unidentified read ptr: float* %b
LV: Found an unidentified read ptr: float* %a
LV: Found an unidentified read ptr: float* %b
LV: Found a runtime check ptr: %arrayidx4 =...
2013 Oct 28
0
[LLVMdev] Loop vectorizer dosen't find loop bounds
...dth + i ];
> }
> }
>
> using the following commands
>
> clang -emit-llvm -S loop.c
> opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
>
> LV: Checking a loop in "bar"
> LV: Found a loop: for.body
> LV: Found an induction variable.
> LV: Found an unidentified write ptr: float* %c
> LV: Found an unidentified write ptr: float* %c
> LV: Found an unidentified read ptr: float* %a
> LV: Found an unidentified read ptr: float* %b
> LV: Found an unidentified read ptr: float* %a
> LV: Found an unidentified read ptr: float* %b
> LV: Found a run...
2013 Oct 28
2
[LLVMdev] Loop vectorizer dosen't find loop bounds
...>> using the following commands
>>
>> clang -emit-llvm -S loop.c
>> opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
>>
>> LV: Checking a loop in "bar"
>> LV: Found a loop: for.body
>> LV: Found an induction variable.
>> LV: Found an unidentified write ptr: float* %c
>> LV: Found an unidentified write ptr: float* %c
>> LV: Found an unidentified read ptr: float* %a
>> LV: Found an unidentified read ptr: float* %b
>> LV: Found an unidentified read ptr: float* %a
>> LV: Found an unidentified read ptr: float* %b...
2013 Oct 21
5
[LLVMdev] First attempt at recognizing pointer reduction
...l check. ==
LV: Found an non-int non-pointer PHI.
== Our read reduction ==
LV: Found a pointer add reduction PHI. %READ1012 = phi i8* [ %incdec.ptr2,
%for.body ], [ %READ, %for.body.preheader ]
== Below are the memory operations's validation, which I'll deal with later
==
LV: Found an unidentified write ptr: i8* %WRITE
LV: Found an unidentified write ptr: i8* %WRITE
LV: Found an unidentified write ptr: i8* %WRITE
LV: Found an unidentified read ptr: i8* %READ
LV: Found an unidentified read ptr: i8* %READ
LV: Found an unidentified read ptr: i8* %READ
LV: Found a runtime check ptr: %WRITE913...
2013 Oct 28
0
[LLVMdev] Loop vectorizer dosen't find loop bounds
...t; >>
> >> clang -emit-llvm -S loop.c
> >> opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
> >>
> >> LV: Checking a loop in "bar"
> >> LV: Found a loop: for.body
> >> LV: Found an induction variable.
> >> LV: Found an unidentified write ptr: float* %c
> >> LV: Found an unidentified write ptr: float* %c
> >> LV: Found an unidentified read ptr: float* %a
> >> LV: Found an unidentified read ptr: float* %b
> >> LV: Found an unidentified read ptr: float* %a
> >> LV: Found an unidenti...
2013 Oct 29
2
[LLVMdev] Loop vectorizer dosen't find loop bounds
...gt;> clang -emit-llvm -S loop.c
>>>> opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
>>>>
>>>> LV: Checking a loop in "bar"
>>>> LV: Found a loop: for.body
>>>> LV: Found an induction variable.
>>>> LV: Found an unidentified write ptr: float* %c
>>>> LV: Found an unidentified write ptr: float* %c
>>>> LV: Found an unidentified read ptr: float* %a
>>>> LV: Found an unidentified read ptr: float* %b
>>>> LV: Found an unidentified read ptr: float* %a
>>>> LV: Fo...
2013 Oct 29
0
[LLVMdev] Loop vectorizer dosen't find loop bounds
...op.c
> >>>> opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
> >>>>
> >>>> LV: Checking a loop in "bar"
> >>>> LV: Found a loop: for.body
> >>>> LV: Found an induction variable.
> >>>> LV: Found an unidentified write ptr: float* %c
> >>>> LV: Found an unidentified write ptr: float* %c
> >>>> LV: Found an unidentified read ptr: float* %a
> >>>> LV: Found an unidentified read ptr: float* %b
> >>>> LV: Found an unidentified read ptr: float* %a
>...
2013 Oct 26
2
[LLVMdev] Why is the loop vectorizer not working on my function?
Hi Arnold,
adding '-debug-only=loop-vectorize' to the command gives:
LV: Checking a loop in "bar"
LV: Found a loop: L0
LV: Found an induction variable.
LV: Found an unidentified write ptr: %7 = load float** %6
LV: Found an unidentified read ptr: %10 = load float** %9
LV: Found an unidentified read ptr: %13 = load float** %12
LV: We need to do 2 pointer comparisons.
LV: We can't vectorize because we can't find the array bounds.
LV: Can't vectorize due to...
2013 Oct 21
0
[LLVMdev] First attempt at recognizing pointer reduction
...inter PHI.
>
> == Our read reduction ==
>
> LV: Found a pointer add reduction PHI. %READ1012 = phi i8* [ %incdec.ptr2, %for.body ], [ %READ, %for.body.preheader ]
>
> == Below are the memory operations's validation, which I'll deal with later ==
>
> LV: Found an unidentified write ptr: i8* %WRITE
> LV: Found an unidentified write ptr: i8* %WRITE
> LV: Found an unidentified write ptr: i8* %WRITE
> LV: Found an unidentified read ptr: i8* %READ
> LV: Found an unidentified read ptr: i8* %READ
> LV: Found an unidentified read ptr: i8* %READ
> LV: Found a...
2013 Oct 26
0
[LLVMdev] Why is the loop vectorizer not working on my function?
----- Original Message -----
> Hi Arnold,
>
> adding '-debug-only=loop-vectorize' to the command gives:
>
> LV: Checking a loop in "bar"
> LV: Found a loop: L0
> LV: Found an induction variable.
> LV: Found an unidentified write ptr: %7 = load float** %6
> LV: Found an unidentified read ptr: %10 = load float** %9
> LV: Found an unidentified read ptr: %13 = load float** %12
> LV: We need to do 2 pointer comparisons.
> LV: We can't vectorize because we can't find the array bounds.
> LV: C...
2013 Oct 26
2
[LLVMdev] Why is the loop vectorizer not working on my function?
...kel wrote:
> ----- Original Message -----
>> Hi Arnold,
>>
>> adding '-debug-only=loop-vectorize' to the command gives:
>>
>> LV: Checking a loop in "bar"
>> LV: Found a loop: L0
>> LV: Found an induction variable.
>> LV: Found an unidentified write ptr: %7 = load float** %6
>> LV: Found an unidentified read ptr: %10 = load float** %9
>> LV: Found an unidentified read ptr: %13 = load float** %12
>> LV: We need to do 2 pointer comparisons.
>> LV: We can't vectorize because we can't find the array bo...
2013 Oct 26
3
[LLVMdev] Why is the loop vectorizer not working on my function?
...> >>>
> >>> adding '-debug-only=loop-vectorize' to the command gives:
> >>>
> >>> LV: Checking a loop in "bar"
> >>> LV: Found a loop: L0
> >>> LV: Found an induction variable.
> >>> LV: Found an unidentified write ptr: %7 = load float** %6
> >>> LV: Found an unidentified read ptr: %10 = load float** %9
> >>> LV: Found an unidentified read ptr: %13 = load float** %12
> >>> LV: We need to do 2 pointer comparisons.
> >>> LV: We can't vectorize be...
2010 Jan 26
2
unidentifiable problem..
Hi All,
My R installation is acting strangely and I'm hoping somebody might have
an idea what's going on:
I can't seem to load the "RMySQL" function. It seems to have installed
without a problem, but when I enter:
library(RMySQL)
R tells me:
Error in utils::readRegistry("SOFTWARE\\MySQL AB", hive = "HLM", maxdepth =
2) :
Registry key
2013 Oct 26
0
[LLVMdev] Why is the loop vectorizer not working on my function?
...sage -----
>>> Hi Arnold,
>>>
>>> adding '-debug-only=loop-vectorize' to the command gives:
>>>
>>> LV: Checking a loop in "bar"
>>> LV: Found a loop: L0
>>> LV: Found an induction variable.
>>> LV: Found an unidentified write ptr: %7 = load float** %6
>>> LV: Found an unidentified read ptr: %10 = load float** %9
>>> LV: Found an unidentified read ptr: %13 = load float** %12
>>> LV: We need to do 2 pointer comparisons.
>>> LV: We can't vectorize because we can't f...
2013 Oct 26
0
[LLVMdev] Why is the loop vectorizer not working on my function?
...;
>>>>> adding '-debug-only=loop-vectorize' to the command gives:
>>>>>
>>>>> LV: Checking a loop in "bar"
>>>>> LV: Found a loop: L0
>>>>> LV: Found an induction variable.
>>>>> LV: Found an unidentified write ptr: %7 = load float** %6
>>>>> LV: Found an unidentified read ptr: %10 = load float** %9
>>>>> LV: Found an unidentified read ptr: %13 = load float** %12
>>>>> LV: We need to do 2 pointer comparisons.
>>>>> LV: We can't...
2013 Oct 27
3
[LLVMdev] Why is the loop vectorizer not working on my function?
...; adding '-debug-only=loop-vectorize' to the command gives:
>>>>>>
>>>>>> LV: Checking a loop in "bar"
>>>>>> LV: Found a loop: L0
>>>>>> LV: Found an induction variable.
>>>>>> LV: Found an unidentified write ptr: %7 = load float** %6
>>>>>> LV: Found an unidentified read ptr: %10 = load float** %9
>>>>>> LV: Found an unidentified read ptr: %13 = load float** %12
>>>>>> LV: We need to do 2 pointer comparisons.
>>>>>> L...
2013 Oct 26
0
[LLVMdev] Why is the loop vectorizer not working on my function?
Hi Frank,
Sent from my iPhone
> On Oct 26, 2013, at 10:03 AM, Frank Winter <fwinter at jlab.org> wrote:
>
> My function implements a simple loop:
>
> void bar( int start, int end, float* A, float* B, float* C)
> {
> for (int i=start; i<end;++i)
> A[i] = B[i] * C[i];
> }
>
> This looks pretty much like the standard example. However, I built
2013 Oct 21
0
[LLVMdev] First attempt at recognizing pointer reduction
...inter PHI.
>
> == Our read reduction ==
>
> LV: Found a pointer add reduction PHI. %READ1012 = phi i8* [ %incdec.ptr2, %for.body ], [ %READ, %for.body.preheader ]
>
> == Below are the memory operations's validation, which I'll deal with later ==
>
> LV: Found an unidentified write ptr: i8* %WRITE
> LV: Found an unidentified write ptr: i8* %WRITE
> LV: Found an unidentified write ptr: i8* %WRITE
> LV: Found an unidentified read ptr: i8* %READ
> LV: Found an unidentified read ptr: i8* %READ
> LV: Found an unidentified read ptr: i8* %READ
> LV: Found a...
2014 Oct 19
3
Warnings en GLMM (lme4)
...nings son:
Warning messages:
1: In checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
Model failed to converge with max|grad| = 0.00431561 (tol = 0.001, component 7)
2: In checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
Model is nearly unidentifiable: very large eigenvalue
- Rescale variables?;Model is nearly unidentifiable: large eigenvalue ratio
- Rescale variables?
Muchas gracias, atentamente,
Javier
[[alternative HTML version deleted]]
2013 Oct 27
0
[LLVMdev] Why is the loop vectorizer not working on my function?
...g-only=loop-vectorize' to the command gives:
>>>>>>>
>>>>>>> LV: Checking a loop in "bar"
>>>>>>> LV: Found a loop: L0
>>>>>>> LV: Found an induction variable.
>>>>>>> LV: Found an unidentified write ptr: %7 = load float** %6
>>>>>>> LV: Found an unidentified read ptr: %10 = load float** %9
>>>>>>> LV: Found an unidentified read ptr: %13 = load float** %12
>>>>>>> LV: We need to do 2 pointer comparisons.
>>>&g...