From 2a8bedfe19de294e19c48d691737c60bd1a73ea0 Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Wed, 13 Apr 2016 15:48:46 +0000 Subject: [PATCH] clean code in core zgelqt --- coreblas/compute/core_zgelqt.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/coreblas/compute/core_zgelqt.c b/coreblas/compute/core_zgelqt.c index c7ca8c12d..8268be841 100644 --- a/coreblas/compute/core_zgelqt.c +++ b/coreblas/compute/core_zgelqt.c @@ -156,22 +156,6 @@ int CORE_zgelqt(int M, int N, int IB, WORK, M-i-sb); } } - // print the matrices -// int i1, i2; -// printf("\nV \n"); -// for (i1=0; i1<M; i1++){ -// for (i2=0; i2<N; i2++){ -// printf("%f ", A[i1+i2*LDA]); -// } -// printf("\n"); -// } -// printf("\nT \n"); -// for (i1=0; i1<IB; i1++){ -// for (i2=0; i2<N; i2++){ -// printf("%f ", T[i1+i2*LDT]); -// } -// printf("\n"); -// } return MORSE_SUCCESS; } -- GitLab