From 39cc838da62d2a073ffd280bc781b61116ece64e Mon Sep 17 00:00:00 2001 From: Edoardo Pasca Date: Tue, 23 Jan 2018 22:22:30 +0000 Subject: removed debugging prints --- Wrappers/Python/fista_module.cpp | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'Wrappers') diff --git a/Wrappers/Python/fista_module.cpp b/Wrappers/Python/fista_module.cpp index 657500e..3876cad 100644 --- a/Wrappers/Python/fista_module.cpp +++ b/Wrappers/Python/fista_module.cpp @@ -593,8 +593,6 @@ bp::list LLT_model(np::ndarray input, double d_lambda, double d_tau, int iter, d // the result is in the following list bp::list result; - std::cout << "Calling LLT_model" << std::endl; - int number_of_dims, dimX, dimY, dimZ, ll, j, count; //const int *dim_array; float *U0, *U = NULL, *U_old = NULL, *D1 = NULL, *D2 = NULL, *D3 = NULL, lambda, tau, re, re1, epsil, re_old; @@ -660,7 +658,6 @@ bp::list LLT_model(np::ndarray input, double d_lambda, double d_tau, int iter, d re_old = 0.0f; for (ll = 0; ll < iter; ll++) { - std::cout << "iteration " << ll << " of " << iter << " count " << count <(npU); - std::cout << "npU shape " << bp::extract(bp::str(shape)) <(bp::str(npU)) <(result[0]); - while (i < inside.get_nd() ) { - std::cout << inside.shape(i++) << " " ; - } - std::cout << std::endl; } else if (number_of_dims == 3) { /*3D case*/ @@ -783,19 +766,6 @@ bp::list LLT_model(np::ndarray input, double d_lambda, double d_tau, int iter, d if (switcher != 0) result.append(npMap); } - std::cout << "Call to LLT_model ended" << std::endl; - std::cout << "result length " << bp::len(result) << std::endl; - //std::cout << "npU shape " << bp::extract(bp::str(shape)) <(bp::str(result[0])) <(result[0]); - while (i < inside.get_nd() ) { - std::cout << inside.shape(i++) << " " ; - } - - std::cout << std::endl; return result; } -- cgit v1.2.3