From 105a3aff62799c498f27a644564c82b0f9fb562c Mon Sep 17 00:00:00 2001 From: Grzegorz Wawiorko Date: Mon, 15 Jun 2020 13:00:14 +0200 Subject: [PATCH] Fix relaxed mode in math bruteforce - binaryOperator (#828) --- test_conformance/math_brute_force/binaryOperator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test_conformance/math_brute_force/binaryOperator.cpp b/test_conformance/math_brute_force/binaryOperator.cpp index 96537f2f..fde5dd59 100644 --- a/test_conformance/math_brute_force/binaryOperator.cpp +++ b/test_conformance/math_brute_force/binaryOperator.cpp @@ -289,6 +289,7 @@ int TestFunc_Float_Float_Float_Operator(const Func *f, MTdata d, test_info.f = f; test_info.ulps = gIsEmbedded ? f->float_embedded_ulps : f->float_ulps; test_info.ftz = f->ftz || gForceFTZ || 0 == (CL_FP_DENORM & gFloatCapabilities); + test_info.relaxedMode = relaxedMode; // cl_kernels aren't thread safe, so we make one for each vector size for every thread for( i = gMinVectorSizeIndex; i < gMaxVectorSizeIndex; i++ )