search for: vfmaddss

Displaying 4 results from an estimated 4 matches for "vfmaddss".

Did you mean: vfmaddsd
2012 Nov 15
0
[LLVMdev] X86 rcp instruction generated
...ag along with its values and enabled optimizations. -fp-rcp =off - No rcp =on - y/x => y * rcp(x) // Standard =fda - Standard, Derive FMA i.e. y/x +z => y * rcp(x) + z => vfmaddss y rcp(x) z. This is termed as FDA(Fused Division Accumulate) Sending the code patch(on llvm svn revision 167927), text description and testcases attached with this mail. Please review. Future enhance plans are as follows. TODO: 1. Enable vector r...
2014 Apr 10
3
[LLVMdev] Test failures with 3.4.1
...chain-3.4-3.4+205824/test/CodeGen/X86/fma4-intrinsics-x86_64.ll -- Exit Code: 1 Command Output (stderr): -- /home/sylvestre/dev/debian/pkg-llvm/llvm-toolchain/branches/llvm-toolchain-3.4-3.4+205824/test/CodeGen/X86/fma4-intrinsics-x86_64.ll:6:11: error: expected string not found in input ; CHECK: vfmaddss ^ <stdin>:1:2: note: scanning from here .file "<stdin>" ^ <stdin>:3:22: note: possible intended match here .globl test_x86_fma_vfmadd_ss ^ -- ******************** FAIL: LLVM :: CodeGen/X86/fp-fast.ll (4097 of 9333) ********************...
2012 Nov 15
2
[LLVMdev] X86 rsqrt instruction generated
...- No rsqrt =on - y/sqrt(x) => y * rsqrt(x) // Standard =advance - Standard, sqrt(x) => x * rsqrt(x) // Advance =fda - Advance, Derive FMA i.e. y/sqrt(x) +z => y * rsqrt(x) + z => vfmaddss y rsqrt(x) z. This is termed as FDA(Fused Division Accumulation) Sending the code patch(onto the svn revision 167927), text description and testcases attached with this mail. Also we want to commit these changes back to llvm codebase. Please revie...
2014 Apr 09
2
[LLVMdev] Test failures with 3.4.1
Hello, Trying the 3.4.1 branch, I get following tests failing: LLVM :: CodeGen/X86/2009-06-05-VZextByteShort.ll LLVM :: CodeGen/X86/fma4-intrinsics-x86_64.ll LLVM :: CodeGen/X86/fp-fast.ll LLVM :: CodeGen/X86/vec_shift4.ll LLVM :: CodeGen/X86/vshift-4.ll I am testing on a Debian testing 64b. Does it ring a bell? Sylvestre