Displaying 3 results from an estimated 3 matches for "36734".
Did you mean:
3634
2010 Feb 10
19
[Bug 26521] New: Bug in kernel module - ttm_bo_pci_offset
http://bugs.freedesktop.org/show_bug.cgi?id=26521
Summary: Bug in kernel module - ttm_bo_pci_offset
Product: xorg
Version: 7.4
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
2004 Aug 12
0
Centos - Samba - FreeBSD
Is Centos 3.1 as stable as FreeBSD to install a Samba File Server for a Visual fox pro database ?
I am using Free at this moment.
My english is not good, I hope you understand it !!!
Thanks !
Anthony.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20040812/cbfa3781/attachment-0005.html>
2019 Apr 04
5
[RFC] Changes to llvm.experimental.vector.reduce intrinsics
...issue with the experimental.vector.reduce.fadd/fmul intrinsics where the accumulator argument is ignored when fast-math is set on the intrinsic call. This behaviour is described in the LangRef (https://www.llvm.org/docs/LangRef.html#id1905) and is mentioned in https://bugs.llvm.org/show_bug.cgi?id=36734 and further discussed in D45336 and D59356.
This means that for example:
%res = call fast float @llvm.experimental.vector.reduce.fadd.f32.v4f32(float undef, <4 x float> %v)
does not result in %res being 'undef', but rather a reduction of <4 x float> %v. The definition of t...