[commit: ghc] wip/simd: Add 512-bit-wide SIMD primitives. (6ad1f54)
git at git.haskell.org
git at git.haskell.org
Mon Sep 16 20:38:37 CEST 2013
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/simd
Link : http://ghc.haskell.org/trac/ghc/changeset/6ad1f549b30171b609b04323c38a10446bb3d25d/ghc
>---------------------------------------------------------------
commit 6ad1f549b30171b609b04323c38a10446bb3d25d
Author: Geoffrey Mainland <gmainlan at microsoft.com>
Date: Sun Sep 15 22:53:39 2013 -0400
Add 512-bit-wide SIMD primitives.
>---------------------------------------------------------------
6ad1f549b30171b609b04323c38a10446bb3d25d
compiler/prelude/primops.txt.pp | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/compiler/prelude/primops.txt.pp b/compiler/prelude/primops.txt.pp
index 77de52f..a6187c0 100644
--- a/compiler/prelude/primops.txt.pp
+++ b/compiler/prelude/primops.txt.pp
@@ -2305,26 +2305,34 @@ section "SIMD Vectors"
#define ALL_VECTOR_TYPES \
[<Int8,Int#,16>,<Int16,Int#,8>,<Int32,INT32,4>,<Int64,INT64,2> \
,<Int8,Int#,32>,<Int16,Int#,16>,<Int32,INT32,8>,<Int64,INT64,4> \
+ ,<Int8,Int#,64>,<Int16,Int#,32>,<Int32,INT32,16>,<Int64,INT64,8> \
,<Word8,Word#,16>,<Word16,Word#,8>,<Word32,WORD32,4>,<Word64,WORD64,2> \
,<Word8,Word#,32>,<Word16,Word#,16>,<Word32,WORD32,8>,<Word64,WORD64,4> \
+ ,<Word8,Word#,64>,<Word16,Word#,32>,<Word32,WORD32,16>,<Word64,WORD64,8> \
,<Float,Float#,4>,<Double,Double#,2> \
- ,<Float,Float#,8>,<Double,Double#,4>]
+ ,<Float,Float#,8>,<Double,Double#,4> \
+ ,<Float,Float#,16>,<Double,Double#,8>]
#define SIGNED_VECTOR_TYPES \
[<Int8,Int#,16>,<Int16,Int#,8>,<Int32,INT32,4>,<Int64,INT64,2> \
,<Int8,Int#,32>,<Int16,Int#,16>,<Int32,INT32,8>,<Int64,INT64,4> \
+ ,<Int8,Int#,64>,<Int16,Int#,32>,<Int32,INT32,16>,<Int64,INT64,8> \
,<Float,Float#,4>,<Double,Double#,2> \
- ,<Float,Float#,8>,<Double,Double#,4>]
+ ,<Float,Float#,8>,<Double,Double#,4> \
+ ,<Float,Float#,16>,<Double,Double#,8>]
#define FLOAT_VECTOR_TYPES \
[<Float,Float#,4>,<Double,Double#,2> \
- ,<Float,Float#,8>,<Double,Double#,4>]
+ ,<Float,Float#,8>,<Double,Double#,4> \
+ ,<Float,Float#,16>,<Double,Double#,8>]
#define INT_VECTOR_TYPES \
[<Int8,Int#,16>,<Int16,Int#,8>,<Int32,INT32,4>,<Int64,INT64,2> \
,<Int8,Int#,32>,<Int16,Int#,16>,<Int32,INT32,8>,<Int64,INT64,4> \
+ ,<Int8,Int#,64>,<Int16,Int#,32>,<Int32,INT32,16>,<Int64,INT64,8> \
,<Word8,Word#,16>,<Word16,Word#,8>,<Word32,WORD32,4>,<Word64,WORD64,2> \
- ,<Word8,Word#,32>,<Word16,Word#,16>,<Word32,WORD32,8>,<Word64,WORD64,4>]
+ ,<Word8,Word#,32>,<Word16,Word#,16>,<Word32,WORD32,8>,<Word64,WORD64,4> \
+ ,<Word8,Word#,64>,<Word16,Word#,32>,<Word32,WORD32,16>,<Word64,WORD64,8>]
primtype VECTOR
with llvm_only = True
More information about the ghc-commits
mailing list