search for: l132

Displaying 5 results from an estimated 5 matches for "l132".

Did you mean: 132
2015 Dec 01
0
Re: packaging virtio-win
...uot;/x86/") and from that it works out what Windows OS + arch the drivers in that directory are intended for. It's flexible enough that we can easily change it, but only if we're told what the new convention will be. https://github.com/libguestfs/libguestfs/blob/master/v2v/windows.ml#L132-L165 Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. h...
2012 Dec 13
1
[PATCH] smallft.c
...++)c2[ik]=ch2[ik]; + memcpy(c2, ch2, idl1 * sizeof(float)); t1=0; t2=ipp2*idl1; @@ -628,7 +628,7 @@ if(na==1)return; - for(i=0;i<n;i++)c[i]=ch[i]; + memcpy(c, ch, n * sizeof(float)); } static void dradb2(int ido,int l1,float *cc,float *ch,float *wa1){ @@ -1097,7 +1097,7 @@ L132: if(ido==1)return; - for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik]; + memcpy(c2, ch2, idl1 * sizeof(float)); t1=0; for(j=1;j<ip;j++){ @@ -1226,7 +1226,7 @@ if(na==0)return; - for(i=0;i<n;i++)c[i]=ch[i]; + memcpy(c, ch, n * sizeof(float)); } void drft_forward(drft_lookup...
2017 Apr 20
4
[cfe-dev] FE_INEXACT being set for an exact conversion from float to unsigned long long
> This seems like it was done for perf reason (mispredict). Conditional-to-cmov transformation should keep > from introducing additional observable side-effects, and it's clear that whatever did this did not account > for floating point exception. That’s a very reasonable statement, but I’m not sure it corresponds to the way we have typically approached this sort of problem. In
2015 Nov 30
6
Re: packaging virtio-win
On 11/27/2015 12:16 PM, Roman Kagan wrote: > On Thu, Nov 26, 2015 at 06:29:45PM -0600, Jeff Nelson wrote: >> On Thu, Nov 26, 2015 at 08:12:41PM +0300, Roman Kagan wrote: >>> Do I get it right that the way virtio-win is packaged for Fedora and >>> RHEL is driven by the scripts at >>> >>> https://github.com/crobinso/virtio-win-pkg-scripts >>>
2017 Apr 21
2
[cfe-dev] FE_INEXACT being set for an exact conversion from float to unsigned long long
...float to u64 and double to u64. They are currently the only two operations that fail the RISC-V QEMU tests, which is essentially testing all of the compiler floating point intrinsics. https://github.com/michaeljclark/riscv-meta/blob/ea306062bfd2f60a229daf6b04826cdeb2dfbe9d/meta/opcode-pseudocode-c#L132-L204 These are the tests that I am using to exercise clang and gcc FENV_ACCESS along with the C code in the link above. riscv-qemu-tests is a user-mode port of the RISC-V ISA conformance test suite. - https://github.com/arsv/riscv-qemu-tests/tree/master/rv64f - https://github.com/arsv/riscv-qemu-...