From dc2e174d4f322a36cbaab080a60816037cc49eee Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Thu, 11 Dec 2014 13:13:16 +0400 Subject: [PATCH 1/6] added compiler version guards, '__scatter64_i64' is not implemented --- examples/intrinsics/knc.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/examples/intrinsics/knc.h b/examples/intrinsics/knc.h index 9fb5fd73..c9c622d7 100644 --- a/examples/intrinsics/knc.h +++ b/examples/intrinsics/knc.h @@ -38,12 +38,21 @@ #include #include +#ifndef __INTEL_COMPILER +#error "Only Intel(R) C++ Compiler is supported" +#endif + #include #include #include // for operator<<(m512[i]) #include // for operator<<(m512[i]) +#if __INTEL_COMPILER < 1500 +#warning "Your compiler version is outdated which can reduce performance in some cases. Please, update your compiler!" +#endif + + #if 0 #define STRING(x) #x #define TOSTRING(x) STRING(x) @@ -3357,9 +3366,14 @@ static FORCEINLINE void __scatter64_i64(__vec16_i64 ptrs, __vec16_i64 val, __vec hilo2zmm(ptrs, first8ptrs.v, second8ptrs.v); __vec16_i32 first8vals, second8vals; hilo2zmm(val, first8vals.v, second8vals.v); + +#if __INTEL_COMPILER < 1500 + #warning "__scatter64_i64 is not implemented!" +#else _mm512_mask_i64extscatter_epi64 (0, mask, first8ptrs, first8vals, _MM_DOWNCONV_EPI64_NONE, 1, _MM_HINT_NONE); const __mmask8 mask8 = 0x00FF & (mask >> 8); _mm512_mask_i64extscatter_epi64 (0, mask8, second8ptrs, second8vals, _MM_DOWNCONV_EPI64_NONE, 1, _MM_HINT_NONE); +#endif } From e4c79418c8adf583898e67e8d0c916ea3d4c5a03 Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Thu, 11 Dec 2014 14:13:16 +0400 Subject: [PATCH 2/6] '__scatter64_i64' function fixed for icc 13 --- examples/intrinsics/knc.h | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/examples/intrinsics/knc.h b/examples/intrinsics/knc.h index c9c622d7..33106b0d 100644 --- a/examples/intrinsics/knc.h +++ b/examples/intrinsics/knc.h @@ -3281,6 +3281,28 @@ static FORCEINLINE void __scatter_base_offsets64_i32(uint8_t *_base, uint32_t sc } } +static FORCEINLINE void __scatter_base_offsets64_i64(uint8_t *_base, uint32_t scale, __vec16_i64 offsets, + __vec16_i64 value, + __vec16_i1 mask) { + + const __vec16_i32 signed_offsets = _mm512_add_epi32(offsets.v_lo, __smear_i32<__vec16_i32>((int32_t)INT_MIN)); + __vec16_i1 still_to_do = mask; + while (still_to_do) { + int first_active_lane = _mm_tzcnt_32((int)still_to_do); + const uint &hi32 = ((uint*)&offsets.v_hi)[first_active_lane]; + __vec16_i1 match = _mm512_mask_cmp_epi32_mask(mask,offsets.v_hi, + __smear_i32<__vec16_i32>((int32_t)hi32), + _MM_CMPINT_EQ); + + void * base = (void*)((unsigned long)_base + ((scale*(unsigned long)hi32) << 32) + scale*(unsigned long)(-(long)INT_MIN)); + + _mm512_mask_i32extscatter_epi32(base, match, signed_offsets, value.v_lo, _MM_DOWNCONV_EPI32_NONE, scale, _MM_HINT_NONE); + _mm512_mask_i32extscatter_epi32(base + sizeof(uint32_t), match, signed_offsets, value.v_hi, _MM_DOWNCONV_EPI32_NONE, scale, _MM_HINT_NONE); + + still_to_do = _mm512_kxor(match,still_to_do); + } +} + static FORCEINLINE void // TODO __scatter_base_offsets64_i8(uint8_t *_base, uint32_t scale, __vec16_i64 offsets, __vec16_i8 value, @@ -3362,14 +3384,14 @@ static FORCEINLINE void __scatter64_i32(__vec16_i64 ptrs, __vec16_i32 val, __vec */ static FORCEINLINE void __scatter64_i64(__vec16_i64 ptrs, __vec16_i64 val, __vec16_i1 mask) { +#if __INTEL_COMPILER < 1500 + #warning "__scatter64_i64 is slow due to outdated compiler" + __scatter_base_offsets64_i64(0, 1, ptrs, val, mask); +#else __vec16_i32 first8ptrs, second8ptrs; hilo2zmm(ptrs, first8ptrs.v, second8ptrs.v); __vec16_i32 first8vals, second8vals; hilo2zmm(val, first8vals.v, second8vals.v); - -#if __INTEL_COMPILER < 1500 - #warning "__scatter64_i64 is not implemented!" -#else _mm512_mask_i64extscatter_epi64 (0, mask, first8ptrs, first8vals, _MM_DOWNCONV_EPI64_NONE, 1, _MM_HINT_NONE); const __mmask8 mask8 = 0x00FF & (mask >> 8); _mm512_mask_i64extscatter_epi64 (0, mask8, second8ptrs, second8vals, _MM_DOWNCONV_EPI64_NONE, 1, _MM_HINT_NONE); From 91538b53666f3e6c4ccbd7f58694193fcf88715f Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Thu, 11 Dec 2014 17:31:48 +0400 Subject: [PATCH 3/6] fixed noisy warnings in icpc13 produced by unsupported 64 bit 'reduce' functions --- examples/intrinsics/knc.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/examples/intrinsics/knc.h b/examples/intrinsics/knc.h index 33106b0d..d6eb8f87 100644 --- a/examples/intrinsics/knc.h +++ b/examples/intrinsics/knc.h @@ -2823,6 +2823,8 @@ static FORCEINLINE uint32_t __reduce_max_uint32(__vec16_i32 v) { return _mm512_reduce_max_epu32(v); } + +#if __INTEL_COMPILER >= 1500 static FORCEINLINE int64_t __reduce_add_int64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; @@ -2831,7 +2833,10 @@ static FORCEINLINE int64_t __reduce_add_int64(__vec16_i64 v) { int64_t res2 = _mm512_reduce_add_epi64(tmp2); return res1 + res2; } +#endif + +#if __INTEL_COMPILER >= 1500 static FORCEINLINE int64_t __reduce_min_int64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; @@ -2840,7 +2845,9 @@ static FORCEINLINE int64_t __reduce_min_int64(__vec16_i64 v) { int64_t res2 = _mm512_reduce_min_epi64(tmp2); return (res1 < res2) ? res1 : res2; } +#endif +#if __INTEL_COMPILER >= 1500 static FORCEINLINE int64_t __reduce_max_int64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; @@ -2849,7 +2856,9 @@ static FORCEINLINE int64_t __reduce_max_int64(__vec16_i64 v) { int64_t res2 = _mm512_reduce_max_epi64(tmp2); return (res1 > res2) ? res1 : res2; } +#endif +#if __INTEL_COMPILER >= 1500 static FORCEINLINE uint64_t __reduce_min_uint64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; @@ -2858,7 +2867,9 @@ static FORCEINLINE uint64_t __reduce_min_uint64(__vec16_i64 v) { uint64_t res2 = _mm512_reduce_min_epu64(tmp2); return (res1 < res2) ? res1 : res2; } +#endif +#if __INTEL_COMPILER >= 1500 static FORCEINLINE uint64_t __reduce_max_uint64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; @@ -2867,6 +2878,7 @@ static FORCEINLINE uint64_t __reduce_max_uint64(__vec16_i64 v) { uint64_t res2 = _mm512_reduce_max_epu64(tmp2); return (res1 > res2) ? res1 : res2; } +#endif static FORCEINLINE float __reduce_add_float(__vec16_f v) { return _mm512_reduce_add_ps(v); From 4d4a512f72622e73116ac68415611ecbefd2ad02 Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Thu, 11 Dec 2014 17:58:51 +0400 Subject: [PATCH 4/6] fixed warnings produced by 64 bit reduce functions without affecting the functionality --- examples/intrinsics/knc.h | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/examples/intrinsics/knc.h b/examples/intrinsics/knc.h index d6eb8f87..b0e6f74d 100644 --- a/examples/intrinsics/knc.h +++ b/examples/intrinsics/knc.h @@ -2823,62 +2823,75 @@ static FORCEINLINE uint32_t __reduce_max_uint32(__vec16_i32 v) { return _mm512_reduce_max_epu32(v); } - -#if __INTEL_COMPILER >= 1500 static FORCEINLINE int64_t __reduce_add_int64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; hilo2zmm(v, tmp1, tmp2); +#if __INTEL_COMPILER < 1500 + int64_t res1 = _mm512_reduce_add_epi64((__m512)tmp1); + int64_t res2 = _mm512_reduce_add_epi64((__m512)tmp2); +#else int64_t res1 = _mm512_reduce_add_epi64(tmp1); int64_t res2 = _mm512_reduce_add_epi64(tmp2); +#endif return res1 + res2; } -#endif - -#if __INTEL_COMPILER >= 1500 static FORCEINLINE int64_t __reduce_min_int64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; hilo2zmm(v, tmp1, tmp2); +#if __INTEL_COMPILER < 1500 + int64_t res1 = _mm512_reduce_min_epi64((__m512)tmp1); + int64_t res2 = _mm512_reduce_min_epi64((__m512)tmp2); +#else int64_t res1 = _mm512_reduce_min_epi64(tmp1); int64_t res2 = _mm512_reduce_min_epi64(tmp2); +#endif return (res1 < res2) ? res1 : res2; } -#endif -#if __INTEL_COMPILER >= 1500 static FORCEINLINE int64_t __reduce_max_int64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; hilo2zmm(v, tmp1, tmp2); +#if __INTEL_COMPILER < 1500 + int64_t res1 = _mm512_reduce_max_epi64((__m512)tmp1); + int64_t res2 = _mm512_reduce_max_epi64((__m512)tmp2); +#else int64_t res1 = _mm512_reduce_max_epi64(tmp1); int64_t res2 = _mm512_reduce_max_epi64(tmp2); +#endif return (res1 > res2) ? res1 : res2; } -#endif -#if __INTEL_COMPILER >= 1500 static FORCEINLINE uint64_t __reduce_min_uint64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; hilo2zmm(v, tmp1, tmp2); +#if __INTEL_COMPILER < 1500 + uint64_t res1 = _mm512_reduce_min_epu64((__m512)tmp1); + uint64_t res2 = _mm512_reduce_min_epu64((__m512)tmp2); +#else uint64_t res1 = _mm512_reduce_min_epu64(tmp1); uint64_t res2 = _mm512_reduce_min_epu64(tmp2); +#endif return (res1 < res2) ? res1 : res2; } -#endif -#if __INTEL_COMPILER >= 1500 static FORCEINLINE uint64_t __reduce_max_uint64(__vec16_i64 v) { __m512i tmp1; __m512i tmp2; hilo2zmm(v, tmp1, tmp2); +#if __INTEL_COMPILER < 1500 + uint64_t res1 = _mm512_reduce_max_epu64((__m512)tmp1); + uint64_t res2 = _mm512_reduce_max_epu64((__m512)tmp2); +#else uint64_t res1 = _mm512_reduce_max_epu64(tmp1); uint64_t res2 = _mm512_reduce_max_epu64(tmp2); +#endif return (res1 > res2) ? res1 : res2; } -#endif static FORCEINLINE float __reduce_add_float(__vec16_f v) { return _mm512_reduce_add_ps(v); From ea2764b3452e529fba261b4c9084e2243b1ca1e1 Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Thu, 11 Dec 2014 18:35:42 +0400 Subject: [PATCH 5/6] removed fixed fails (fixed by Vsevolod) One new runfail --- fail_db.txt | 193 +--------------------------------------------------- 1 file changed, 1 insertion(+), 192 deletions(-) diff --git a/fail_db.txt b/fail_db.txt index 3a1f915d..d6e1fdcc 100644 --- a/fail_db.txt +++ b/fail_db.txt @@ -512,14 +512,6 @@ ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/double-consts.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/double-sqrt.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * @@ -543,45 +535,19 @@ ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/half-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/half-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/half-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/half.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/int64-max-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/int64-max.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/int64-min-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/int64-min.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/padds_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/pdivs_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/popcnt-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/prefetch.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/psubs_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/psubus_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/ptr-cmp-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/shift-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/shuffle2-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/shuffle2-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/shuffle2-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/uint64-max-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/uint64-max.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/uint64-min-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * -./tests/uint64-min.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * @@ -606,11 +572,6 @@ ./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/double-consts.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/double-sqrt.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * @@ -639,32 +600,15 @@ ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/half-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/half-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/half-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/half.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/int64-max-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/int64-max.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/int64-min-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/int64-min.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/padds_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/pdivs_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/popcnt-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/prefetch.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/psubs_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/psubus_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/ptr-cmp-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * @@ -679,20 +623,10 @@ ./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/shift-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/shift-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/shift-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/shuffle2-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/shuffle2-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/shuffle2-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/uint64-max-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/uint64-max.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/uint64-min-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * -./tests/uint64-min.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * @@ -709,17 +643,9 @@ ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/double-consts.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/double-sqrt.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * @@ -743,21 +669,11 @@ ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/half-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/half-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/half-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/half.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/int64-max-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/int64-max.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/int64-min-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/int64-min.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/padds_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/pdivs_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * @@ -765,28 +681,15 @@ ./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/popcnt-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/prefetch.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/psubs_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/psubus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/ptr-cmp-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/shift-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/shuffle2-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/shuffle2-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/shuffle2-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/uint64-max-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/uint64-max.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/uint64-min-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * -./tests/uint64-min.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * @@ -814,11 +717,6 @@ ./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/double-consts.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/double-sqrt.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * @@ -847,32 +745,15 @@ ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/half-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/half-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/half-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/half.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/int64-max-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/int64-max.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/int64-min-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/int64-min.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/padds_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/pdivs_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/popcnt-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/prefetch.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/psubs_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/psubus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/ptr-cmp-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * @@ -887,20 +768,10 @@ ./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/shift-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/shift-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/shift-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/shuffle2-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/shuffle2-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/shuffle2-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/uint64-max-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/uint64-max.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/uint64-min-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * -./tests/uint64-min.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * @@ -917,17 +788,9 @@ ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/count-leading-trailing-zeros-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/double-consts.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/double-sqrt.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * @@ -951,21 +814,11 @@ ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/half-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/half-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/half-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/half.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/int64-max-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/int64-max.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/int64-min-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/int64-min.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/padds_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/pdivs_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * @@ -973,28 +826,15 @@ ./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/popcnt-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/prefetch.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/psubs_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/psubus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/ptr-cmp-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/shift-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/shuffle2-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/shuffle2-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/shuffle2-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/uint64-max-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/uint64-max.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/uint64-min-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * -./tests/uint64-min.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * @@ -1022,11 +862,6 @@ ./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/count-leading-trailing-zeros-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/double-consts.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/double-sqrt.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * @@ -1055,32 +890,15 @@ ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/half-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/half-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/half-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/half.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/int64-max-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/int64-max.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/int64-min-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/int64-min.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/padds_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/pdivs_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/popcnt-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/prefetch.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/psubs_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/psubus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/ptr-cmp-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * @@ -1095,20 +913,11 @@ ./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/shift-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/shift-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/shift-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/shuffle2-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/shuffle2-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/shuffle2-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/uint64-max-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/uint64-max.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/uint64-min-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * -./tests/uint64-min.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * ./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * ./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * ./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmuls_vi64.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * From b17fcdeba2ed55f4a20a0345532ac155286315b0 Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Thu, 11 Dec 2014 18:38:59 +0400 Subject: [PATCH 6/6] added entries for icpc13 (the same as for icpc15) --- fail_db.txt | 550 +++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 438 insertions(+), 112 deletions(-) diff --git a/fail_db.txt b/fail_db.txt index d6e1fdcc..4d31e27a 100644 --- a/fail_db.txt +++ b/fail_db.txt @@ -1,11 +1,20 @@ % List of known fails. +% List of known fails. % The list is unordered and contains information about commonly used platforms / configurations. +% The list is unordered and contains information about commonly used platforms / configurations. +% Our goas is to maintain this list for Linux, MacOS and Windows with reasonably new compilers. % Our goas is to maintain this list for Linux, MacOS and Windows with reasonably new compilers. % Note, that it's important which C++ compiler was used. The currently supported C++ compilers are +% Note, that it's important which C++ compiler was used. The currently supported C++ compilers are +% clang 3.4 on Linux and clang 3.3 on MacOS and cl (VS2012) on Windows. % clang 3.4 on Linux and clang 3.3 on MacOS and cl (VS2012) on Windows. % Please also note that it's very important to have correctly built LLVM. There are a number of +% Please also note that it's very important to have correctly built LLVM. There are a number of +% LLVM bugs in released versions, that we have to workaround by applying patches (see llvm_patches % LLVM bugs in released versions, that we have to workaround by applying patches (see llvm_patches % folder). The recommended way to build LLVM on Unix is to use "alloy.py". +% folder). The recommended way to build LLVM on Unix is to use "alloy.py". +% % ./tests/atomics-13.ispc compfail x86 sse4-i16x8 Mac LLVM 3.3 clang++3.3 -O2 * ./tests/atomics-13.ispc compfail x86-64 sse4-i16x8 Mac LLVM 3.3 clang++3.3 -O2 * @@ -280,7 +289,10 @@ ./tests/atomics-uniform-8.ispc compfail x86-64 generic-16 Linux LLVM 3.5 clang++3.4 -O0 * ./tests/atomics-uniform-9.ispc compfail x86-64 generic-16 Linux LLVM 3.5 clang++3.4 -O0 * .\tests\foreach-double-1.ispc runfail x86 avx2-i32x8 Windows LLVM 3.5 cl -O2 * +.\tests\foreach-double-1.ispc runfail x86 avx2-i32x8 Windows LLVM 3.5 cl -O2 * .\tests\foreach-double-1.ispc runfail x86 avx2-i32x16 Windows LLVM 3.5 cl -O2 * +.\tests\foreach-double-1.ispc runfail x86 avx2-i32x16 Windows LLVM 3.5 cl -O2 * +.\tests\foreach-double-1.ispc runfail x86 avx2-i64x4 Windows LLVM 3.5 cl -O2 * .\tests\foreach-double-1.ispc runfail x86 avx2-i64x4 Windows LLVM 3.5 cl -O2 * ./tests/ptr-22.ispc runfail x86-64 generic-4 Linux LLVM 3.3 clang++3.4 -O0 * ./tests/ptr-22.ispc runfail x86-64 generic-16 Linux LLVM 3.3 clang++3.4 -O0 * @@ -288,75 +300,6 @@ ./tests/ptr-22.ispc runfail x86-64 generic-16 Linux LLVM 3.4 clang++3.4 -O0 * ./tests/ptr-22.ispc runfail x86-64 generic-4 Linux LLVM 3.5 clang++3.4 -O0 * ./tests/ptr-22.ispc runfail x86-64 generic-16 Linux LLVM 3.5 clang++3.4 -O0 * -./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * -./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * -./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/paddus_vi16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/paddus_vi8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/pmulus_i32.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * -./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * -./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/masked-scatter-struct.ispc runfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O2 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O2 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O2 * @@ -430,51 +373,13 @@ ./tests/reduce-equal-6.ispc compfail x86-64 generic-16 Linux LLVM 3.6 clang++3.4 -O0 * ./tests/reduce-equal-8.ispc compfail x86-64 generic-16 Linux LLVM 3.6 clang++3.4 -O0 * .\tests\foreach-double-1.ispc runfail x86 avx2-i32x8 Windows LLVM 3.6 cl -O2 * +.\tests\foreach-double-1.ispc runfail x86 avx2-i32x8 Windows LLVM 3.6 cl -O2 * .\tests\foreach-double-1.ispc runfail x86 avx2-i32x16 Windows LLVM 3.6 cl -O2 * +.\tests\foreach-double-1.ispc runfail x86 avx2-i32x16 Windows LLVM 3.6 cl -O2 * +.\tests\foreach-double-1.ispc runfail x86 avx2-i64x4 Windows LLVM 3.6 cl -O2 * .\tests\foreach-double-1.ispc runfail x86 avx2-i64x4 Windows LLVM 3.6 cl -O2 * ./tests/ptr-22.ispc runfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O0 * ./tests/ptr-22.ispc runfail x86-64 generic-16 Linux LLVM 3.6 clang++3.4 -O0 * -./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/paddus_vi16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/paddus_vi8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/pmulus_i32.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * -./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-6.ispc compfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O2 * ./tests/atomics-uniform-8.ispc compfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O2 * ./tests/atomics-uniform-9.ispc compfail x86-64 generic-4 Linux LLVM 3.6 clang++3.4 -O2 * @@ -497,427 +402,848 @@ ./tests/atomics-6.ispc compfail x86-64 generic-16 Linux LLVM 3.6 clang++3.4 -O0 * ./tests/atomics-uniform-8.ispc compfail x86-64 generic-16 Linux LLVM 3.6 clang++3.4 -O0 * ./tests/atomics-uniform-9.ispc compfail x86-64 generic-16 Linux LLVM 3.6 clang++3.4 -O0 * -./tests/psubus_vi16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * -./tests/psubus_vi8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int8-4.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int8-4.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/funcptr-varying-7.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/funcptr-varying-7.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/funcptr-varying-8.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/funcptr-varying-8.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ldexp-double.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ldexp-double.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O0 * +./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O0 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int8-4.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int8-4.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-diff-3.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-diff-3.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-diff-5.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-diff-5.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-diff-6.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-diff-6.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmulus_i32.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmulus_i32.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/funcptr-varying-7.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/funcptr-varying-7.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/funcptr-varying-8.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/funcptr-varying-8.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ldexp-double.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ldexp-double.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O0 * +./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O0 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int8-2.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int8-4.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int8-4.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-diff-3.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-diff-3.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-diff-5.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-diff-5.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-diff-6.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-diff-6.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/funcptr-varying-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/funcptr-varying-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/paddus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmuls_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmulus_i16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmulus_i32.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmulus_i32.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmulus_i64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmulus_i8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/pmulus_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/ptr-assign-lhs-math-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/acos.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/asin.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/funcptr-varying-6.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/funcptr-varying-7.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/funcptr-varying-7.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/funcptr-varying-8.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/funcptr-varying-8.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ldexp-double.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ldexp-double.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/aossoa-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-11.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-12.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-14.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-uniform-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/atomics-uniform-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-add-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-add-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-add-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-add-9.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-and-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-and-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/exclusive-scan-or-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-double-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-double-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-double-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-double-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int32-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int32-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int32-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int32-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int8-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int8-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int8-7.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/gather-int8-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/memcpy-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/memmove-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/memset-varying.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/pass-varying-lvalue-to-ref.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/pmuls_vi64.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ptr-24.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ptr-25.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ptr-assign-lhs-math-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ptr-cast-complex.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ptr-int-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/ptr-varying-unif-index.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-10.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-12.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-13.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-2.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-3.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-4.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-6.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/reduce-equal-8.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/scatter-int16-1.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/scatter-int16.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/soa-18.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/soa-19.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/soa-22.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O0 * +./tests/struct-nested-5.ispc compfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O0 * ./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * ./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.5 icpc15.0 -O2 * +./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.5 icpc13.1 -O2 * ./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.6 icpc15.0 -O2 * +./tests/reduce-equal-10.ispc runfail x86-64 knc Linux LLVM 3.6 icpc13.1 -O2 * ./tests/pmuls_vi64.ispc runfail x86-64 knc Linux LLVM 3.4 icpc15.0 -O2 * +./tests/pmuls_vi64.ispc runfail x86-64 knc Linux LLVM 3.4 icpc13.1 -O2 * +