From 386bf4f456b9b6c27e91aa3535277b4049821361 Mon Sep 17 00:00:00 2001 From: Nicolas Bock Date: Thu, 13 Feb 2020 06:39:18 -0700 Subject: [PATCH] Small fix for diagonalize test Signed-off-by: Nicolas Bock --- tests/C-tests/diagonalize_matrix_typed.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/C-tests/diagonalize_matrix_typed.c b/tests/C-tests/diagonalize_matrix_typed.c index 34854687a..216c72eaf 100644 --- a/tests/C-tests/diagonalize_matrix_typed.c +++ b/tests/C-tests/diagonalize_matrix_typed.c @@ -36,6 +36,7 @@ int TYPED_FUNC( A = bml_random_matrix(matrix_type, matrix_precision, N, M, sequential); A_t = bml_transpose_new(A); + bml_complex_conjugate(A_t); bml_add(A, A_t, 0.5, 0.5, 0.0); bml_print_bml_matrix(A, 0, N, 0, N);