]> gitweb.factorcode.org Git - factor.git/blob - basis/math/vectors/simd/intrinsics/intrinsics-tests.factor
merge project-euler.factor
[factor.git] / basis / math / vectors / simd / intrinsics / intrinsics-tests.factor
1 IN: math.vectors.simd.intrinsics.tests
2 USING: math.vectors.simd.intrinsics cpu.architecture tools.test ;
3
4 [ 16 ] [ uchar-16-rep rep-components ] unit-test
5 [ 16 ] [ char-16-rep rep-components ] unit-test
6 [ 8 ] [ ushort-8-rep rep-components ] unit-test
7 [ 8 ] [ short-8-rep rep-components ] unit-test
8 [ 4 ] [ uint-4-rep rep-components ] unit-test
9 [ 4 ] [ int-4-rep rep-components ] unit-test
10 [ 4 ] [ float-4-rep rep-components ] unit-test
11 [ 2 ] [ double-2-rep rep-components ] unit-test
12
13 { 4 1 } [ uint-4-rep (simd-boa) ] must-infer-as
14 { 4 1 } [ int-4-rep (simd-boa) ] must-infer-as
15 { 4 1 } [ float-4-rep (simd-boa) ] must-infer-as
16 { 2 1 } [ double-2-rep (simd-boa) ] must-infer-as
17
18