aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/float_mat/float_mat_run.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/float_mat/float_mat_run.c')
-rw-r--r--test/monniaux/float_mat/float_mat_run.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/monniaux/float_mat/float_mat_run.c b/test/monniaux/float_mat/float_mat_run.c
index cb5e2110..448bb8a5 100644
--- a/test/monniaux/float_mat/float_mat_run.c
+++ b/test/monniaux/float_mat/float_mat_run.c
@@ -12,7 +12,11 @@ bool REAL_mat_equal(unsigned m,
const REAL *b, unsigned stride_b) {
for(unsigned i=0; i<m; i++) {
for(unsigned j=0; j<n; j++) {
- if (a[i*stride_a + j] != b[i*stride_b + j]) return false;
+ if (a[i*stride_a + j] != b[i*stride_b + j]) {
+ printf("at %u,%u: %g vs %g\n", i, j,
+ a[i*stride_a + j], b[i*stride_b + j]);
+ return false;
+ }
}
}
return true;
@@ -114,5 +118,6 @@ int main() {
free(c4);
free(c5);
free(c6);
+ free(c7);
return 0;
}