mirror of
https://github.com/amd/blis.git
synced 2026-06-06 04:34:02 +00:00
CPP Test comparison util function fix
Change-Id: I6a9769efcef5f313eb318921275d37353df2b127
This commit is contained in:
@@ -162,7 +162,7 @@ int computeErrorM(
|
||||
int i;
|
||||
int ret = 0;
|
||||
for ( i = 0; i < n; i ++ ) {
|
||||
if ( (fabs( Y[ i ]) - fabs(Y_ref[ i ] ) ) > 0.00001) {
|
||||
if ( (fabs( Y_ref[ i ]) - fabs(Y[ i ] ) ) > 0.00001) {
|
||||
cout << Y[i] << Y_ref[i];
|
||||
ret = 1;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user