Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 538c64b

Browse files
committed
Removed float3 powr tests.
Signed-off-by: JackAKirk <[email protected]>
1 parent 3d03969 commit 538c64b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

SYCL/DeviceLib/half_precision_math_test_marray_vec.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@ template <typename T> void half_precision_math_tests_3(queue &deviceQueue) {
109109
T{0.25, 0.25, 0.25}, 2);
110110
half_precision_math_test_recip(deviceQueue, T{-1, -1, -1},
111111
T{0.25, 0.25, 0.25}, 4);
112-
half_precision_math_test_2_powr(deviceQueue, T{-1, -1, -1}, T{2, 2, 2},
113-
T{2, 2, 2}, 4);
114112
half_precision_math_test_2_divide(deviceQueue, T{-1, -1, -1}, T{4, 4, 4},
115113
T{2, 2, 2}, 2);
116114
}

SYCL/DeviceLib/native_math_test_marray_vec.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ template <typename T> void native_tests_3(queue &deviceQueue) {
104104
native_math_test_sqrt(deviceQueue, T{-1, -1, -1}, T{4, 4, 4}, 2);
105105
native_math_test_rsqrt(deviceQueue, T{-1, -1, -1}, T{0.25, 0.25, 0.25}, 2);
106106
native_math_test_recip(deviceQueue, T{-1, -1, -1}, T{0.25, 0.25, 0.25}, 4);
107-
native_math_test_2_powr(deviceQueue, T{-1, -1, -1}, T{2, 2, 2}, T{2, 2, 2},
108-
4);
109107
native_math_test_2_divide(deviceQueue, T{-1, -1, -1}, T{4, 4, 4}, T{2, 2, 2},
110108
2);
111109
}

0 commit comments

Comments
 (0)