We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 663a250 commit 9f1b30eCopy full SHA for 9f1b30e
1 file changed
DirectProgramming/C++SYCL/DenseLinearAlgebra/matrix_mul/src/matrix_mul_sycl.cpp
@@ -134,7 +134,7 @@ int main() {
134
}
135
136
bool ValueSame(float a, float b) {
137
- return std::fabs(a - b) < numeric_limits<float>::epsilon();
+ return sycl::fabs(a - b) < numeric_limits<float>::epsilon();
138
139
140
int VerifyResult(float (*c_back)[P]) {
0 commit comments