mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-24 15:59:03 +00:00
Add fp16 testing to conversions and bruteforce (#1975)
Merge the `fp16-staging` branch into `main`, adding fp16 (`half`) testing to the conversions and math bruteforce tests. --------- Signed-off-by: Ahmed Hesham <ahmed.hesham@arm.com> Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com> Signed-off-by: Guo, Yilong <yilong.guo@intel.com> Signed-off-by: John Kesapides <john.kesapides@arm.com> Co-authored-by: Marcin Hajder <marcin.hajder@gmail.com> Co-authored-by: Ewan Crawford <ewan@codeplay.com> Co-authored-by: Wawiorko, Grzegorz <grzegorz.wawiorko@intel.com> Co-authored-by: Sreelakshmi Haridas Maruthur <sharidas@quicinc.com> Co-authored-by: Harald van Dijk <harald@gigawatt.nl> Co-authored-by: Ben Ashbaugh <ben.ashbaugh@intel.com> Co-authored-by: Haonan Yang <haonan.yang@intel.com> Co-authored-by: Ahmed Hesham <117350656+ahesham-arm@users.noreply.github.com> Co-authored-by: niranjanjoshi121 <43807392+niranjanjoshi121@users.noreply.github.com> Co-authored-by: Wenwan Xing <wenwan.xing@intel.com> Co-authored-by: Yilong Guo <yilong.guo@intel.com> Co-authored-by: Romaric Jodin <89833130+rjodinchr@users.noreply.github.com> Co-authored-by: joshqti <127994991+joshqti@users.noreply.github.com> Co-authored-by: Pekka Jääskeläinen <pekka.jaaskelainen@tuni.fi> Co-authored-by: imilenkovic00 <155085410+imilenkovic00@users.noreply.github.com> Co-authored-by: John Kesapides <46718829+JohnKesapidesARM@users.noreply.github.com> Co-authored-by: Aharon Abramson <aharon.abramson@mobileye.com>
This commit is contained in:
committed by
GitHub
parent
b3c89ebde0
commit
b6941b6c61
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// Copyright (c) 2021 The Khronos Group Inc.
|
||||
// Copyright (c) 2021-2024 The Khronos Group Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
@@ -24,6 +24,9 @@ int TestFunc_Float_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
// double foo(double)
|
||||
int TestFunc_Double_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// half foo(half)
|
||||
int TestFunc_Half_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// int foo(float)
|
||||
int TestFunc_Int_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
@@ -36,6 +39,9 @@ int TestFunc_Float_UInt(const Func *f, MTdata, bool relaxedMode);
|
||||
// double foo(ulong)
|
||||
int TestFunc_Double_ULong(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// half (Ushort)
|
||||
int TestFunc_Half_UShort(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// Returns {0, 1} for scalar and {0, -1} for vector.
|
||||
// int foo(float)
|
||||
int TestMacro_Int_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
@@ -44,21 +50,34 @@ int TestMacro_Int_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
// int foo(double)
|
||||
int TestMacro_Int_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// int foo(half,half)
|
||||
int TestMacro_Int_Half_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// int foo(half)
|
||||
int TestMacro_Int_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// int foo(half)
|
||||
int TestFunc_Int_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// float foo(float, float)
|
||||
int TestFunc_Float_Float_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// double foo(double, double)
|
||||
int TestFunc_Double_Double_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// Half foo(half, half)
|
||||
int TestFunc_Half_Half_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
// Special handling for nextafter.
|
||||
// float foo(float, float)
|
||||
int TestFunc_Float_Float_Float_nextafter(const Func *f, MTdata,
|
||||
bool relaxedMode);
|
||||
// Half foo(Half, Half)
|
||||
int TestFunc_Half_Half_Half_nextafter(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// Half foo(Half, Half)
|
||||
int TestFunc_Half_Half_Half_common(const Func *f, MTdata, int isNextafter,
|
||||
bool relaxedMode);
|
||||
|
||||
// Half foo(Half, int)
|
||||
int TestFunc_Half_Half_Int(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// Special handling for nextafter.
|
||||
// double foo(double, double)
|
||||
int TestFunc_Double_Double_Double_nextafter(const Func *f, MTdata,
|
||||
bool relaxedMode);
|
||||
|
||||
// float op float
|
||||
int TestFunc_Float_Float_Float_Operator(const Func *f, MTdata,
|
||||
@@ -68,6 +87,9 @@ int TestFunc_Float_Float_Float_Operator(const Func *f, MTdata,
|
||||
int TestFunc_Double_Double_Double_Operator(const Func *f, MTdata,
|
||||
bool relaxedMode);
|
||||
|
||||
// half op half
|
||||
int TestFunc_Half_Half_Half_Operator(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// float foo(float, int)
|
||||
int TestFunc_Float_Float_Int(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
@@ -89,24 +111,36 @@ int TestFunc_Float_Float_Float_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
int TestFunc_Double_Double_Double_Double(const Func *f, MTdata,
|
||||
bool relaxedMode);
|
||||
|
||||
// half foo(half, half, half)
|
||||
int TestFunc_Half_Half_Half_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// float foo(float, float*)
|
||||
int TestFunc_Float2_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// double foo(double, double*)
|
||||
int TestFunc_Double2_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// half foo(half, half*)
|
||||
int TestFunc_Half2_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// float foo(float, int*)
|
||||
int TestFunc_FloatI_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// double foo(double, int*)
|
||||
int TestFunc_DoubleI_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// half foo(half, int*)
|
||||
int TestFunc_HalfI_Half(const Func *f, MTdata d, bool relaxedMode);
|
||||
|
||||
// float foo(float, float, int*)
|
||||
int TestFunc_FloatI_Float_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// double foo(double, double, int*)
|
||||
int TestFunc_DoubleI_Double_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// half foo(half, half, int*)
|
||||
int TestFunc_HalfI_Half_Half(const Func *f, MTdata d, bool relaxedMode);
|
||||
|
||||
// Special handling for mad.
|
||||
// float mad(float, float, float)
|
||||
int TestFunc_mad_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
@@ -115,4 +149,7 @@ int TestFunc_mad_Float(const Func *f, MTdata, bool relaxedMode);
|
||||
// double mad(double, double, double)
|
||||
int TestFunc_mad_Double(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
// half mad(half, half, half)
|
||||
int TestFunc_mad_Half(const Func *f, MTdata, bool relaxedMode);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user