From 76bb4697fd83ff85f8b83b160c6b6b3dfb9f3e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pawela?= <3093117+lpawela@users.noreply.github.com> Date: Fri, 30 Oct 2020 01:53:45 +0100 Subject: [PATCH] Update compressions.jl --- src/cuda/compressions.jl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/cuda/compressions.jl b/src/cuda/compressions.jl index 96c214f1..9e3a6acc 100644 --- a/src/cuda/compressions.jl +++ b/src/cuda/compressions.jl @@ -113,13 +113,9 @@ end function _truncate_qr(F::CuQR, Dcut::Int) Q, R = F Q = CuMatrix(Q) - @show typeof(Q) - @show typeof(R) c = min(Dcut, size(Q, 2)) Q = Q[:, 1:c] R = R[1:c, :] - @show typeof(Q) - @show typeof(R) _qr_fix!(Q, R) end @@ -130,4 +126,4 @@ function _qr_fix!(Q::CuMatrix, R::CuMatrix) Q[:, i] .*= ph[i] end Q -end \ No newline at end of file +end