Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test_conformance/math_brute_force/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ struct TestInfoBase

// Result limit for half_sin/half_cos/half_tan.
float half_sin_cos_tan_limit = -1.f;
float tgamma_arg_limit = 0.f;

// Whether the test is being run in relaxed mode.
bool relaxedMode = false;
Expand Down
2 changes: 1 addition & 1 deletion test_conformance/math_brute_force/function_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ const Func functionList[] = {

ENTRY(tanh, 5.0f, 5.0f, 2.0f, 3.0f, FTZ_OFF, unaryF),
ENTRY(tanpi, 6.0f, 6.0f, 2.0f, 3.0f, FTZ_OFF, unaryF),
//ENTRY(tgamma, 16.0f, 16.0f, FTZ_OFF, unaryF), Commented this out until we can be sure this requirement is realistic
ENTRY(tgamma, 16.0f, 16.0f, 4.f, 4.f, FTZ_OFF, unaryF),
ENTRY(trunc, 0.0f, 0.0f, 0.0f, 0.0f, FTZ_OFF, unaryF),

HALF_ENTRY(cos, 8192.0f, 8192.0f, FTZ_ON, unaryOF),
Expand Down
1 change: 1 addition & 0 deletions test_conformance/math_brute_force/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ DO_TEST(sqrt_cr)
DO_TEST(tan)
DO_TEST(tanh)
DO_TEST(tanpi)
DO_TEST(tgamma)
DO_TEST(trunc)
DO_TEST(half_cos)
DO_TEST(half_divide)
Expand Down
Loading
Loading