Displaying 2 results from an estimated 2 matches for "r1502".
Did you mean:
1502
2008 Jun 28
1
[nut-commits] svn commit r1502 - in trunk: . drivers man
Hi,
When running a driver with "-h" or without parameters, the
upsdrv_cleanup function seems to be called (which caused the warning I
mention in the ChangeLog). This doesn't seem right.
Regards,
On Sat, Jun 28, 2008 at 7:47 PM, Carlos Rodrigues
<carlosefr-guest at alioth.debian.org> wrote:
> Author: carlosefr-guest
> Date: Sat Jun 28 18:47:17 2008
> New Revision:
2010 Nov 03
1
[LLVMdev] LLVM x86 Code Generator discards Instruction-level Parallelism
...= p2 * b;
p3 = p3 * c;
p4 = p4 * d;
}
.
.
Compiling with NVCC, Ocelot, and LLVM, I can confirm the interleaved instruction
schedule with a four-instruction reuse distance. An excerpt follows:
.
.
%r1500 = fmul float %r1496, %r24 ; compute %1500
%r1501 = fmul float %r1497, %r23
%r1502 = fmul float %r1498, %r22
%r1503 = fmul float %r1499, %r21
%r1504 = fmul float %r1500, %r24 ; first use of %1500
%r1505 = fmul float %r1501, %r23
%r1506 = fmul float %r1502, %r22
%r1507 = fmul float %r1503, %r21
%r1508 = fmul float %r1504, %r24 ; first use of %1504
.
.
The JIT...