Skip to content

Commit

Permalink
math_brute_force: remove spurious tan skip check (#1992)
Browse files Browse the repository at this point in the history
The `skipTestingRelaxed` check suffers the following problems:

- The use of `skipTestingRelaxed` in the `if` seems reversed: when
skipping correctness testing using the `-l` command line option, this
variable causes correctness testing to be run for relaxed-mode `tan`
regardless.

- Accuracy testing should only be skipped for derived `tan`
implementations. Non-derived `tan` implementations must still be tested
for accuracy, so the condition for setting the `skipTestingRelaxed`
variable is incomplete.

- It is unclear why only `tan` is conditionalized here. There are other
functions such as `tanpi` for which one would expect identical
behaviour.

The actual skipping of accuracy checks for derived implementations
happens in `Test()`, so just remove `skipTestingRelaxed` as it does not
seem to add any value.

Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
  • Loading branch information
svenvh committed Jul 16, 2024
1 parent 8558eb8 commit 39fa6e6
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions test_conformance/math_brute_force/unary_float.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,6 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode)
cl_int error;
float maxError = 0.0f;
double maxErrorVal = 0.0;
int skipTestingRelaxed = (relaxedMode && strcmp(f->name, "tan") == 0);

logFunctionInfo(f->name, sizeof(cl_float), relaxedMode);

Expand Down Expand Up @@ -583,7 +582,7 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode)
return error;

// Run the kernels
if (!gSkipCorrectnessTesting || skipTestingRelaxed)
if (!gSkipCorrectnessTesting)
{
error = ThreadPool_Do(Test, test_info.jobCount, &test_info);
if (error) return error;
Expand All @@ -603,12 +602,6 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode)
else
vlog("passed");

if (skipTestingRelaxed)
{
vlog(" (rlx skip correctness testing)\n");
return error;
}

vlog("\t%8.2f @ %a", maxError, maxErrorVal);
}

Expand Down

0 comments on commit 39fa6e6

Please sign in to comment.