File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,9 @@ jobs:
208
208
209
209
- name : Run test suite on SPR
210
210
run : sde -spr -- ./builddir/testexe
211
+ - name : Run ICL fp16 tests
212
+ # Note: This filters for the _Float16 tests based on the number assigned to it, which could change in the future
213
+ run : sde -icx -- ./builddir/testexe --gtest_filter="*/simdsort/2*"
211
214
212
215
SKX-SKL-openmp :
213
216
Original file line number Diff line number Diff line change @@ -305,8 +305,8 @@ REGISTER_TYPED_TEST_SUITE_P(simdsort,
305
305
306
306
using QSortTestTypes = testing::Types<uint16_t ,
307
307
int16_t ,
308
- // support for _Float16 is incomplete in gcc-12
309
- #if __GNUC__ >= 13
308
+ // support for _Float16 is incomplete in gcc-12, clang < 6
309
+ #if __GNUC__ >= 13 || __clang_major__ >= 6
310
310
_Float16,
311
311
#endif
312
312
float ,
You can’t perform that action at this time.
0 commit comments