Skip to content

Commit 9f1b30e

Browse files
authored
Update matrix_mul_sycl.cpp
1 parent 663a250 commit 9f1b30e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DirectProgramming/C++SYCL/DenseLinearAlgebra/matrix_mul/src/matrix_mul_sycl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ int main() {
134134
}
135135

136136
bool ValueSame(float a, float b) {
137-
return std::fabs(a - b) < numeric_limits<float>::epsilon();
137+
return sycl::fabs(a - b) < numeric_limits<float>::epsilon();
138138
}
139139

140140
int VerifyResult(float (*c_back)[P]) {

0 commit comments

Comments
 (0)