From e2135d2f33b15772997e43c709697bd2d9fe78e9 Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Fri, 29 Nov 2019 20:03:34 +0100
Subject: [PATCH] Remove unused fprintf

---
 runtime/starpu/control/runtime_descriptor.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/runtime/starpu/control/runtime_descriptor.c b/runtime/starpu/control/runtime_descriptor.c
index 3d00d315d..b5e5bfebb 100644
--- a/runtime/starpu/control/runtime_descriptor.c
+++ b/runtime/starpu/control/runtime_descriptor.c
@@ -206,10 +206,6 @@ void RUNTIME_desc_create( CHAM_desc_t *desc )
             chameleon_fatal_error("RUNTIME_desc_create", "Too many tiles in the descriptor for MPI tags");
             return;
         }
-        if ( (lmt*lnt) > (1UL<<tag_sep) ) {
-            fprintf( stderr, "lmt= %ld, lnt= %ld, tag_sep=%d, %ld\n",
-                     lmt, lnt, tag_sep, 1UL << tag_sep );
-        }
         assert( (lmt*lnt) <= (1UL<<tag_sep) );
 
         if ( ((uintptr_t)desc->id) >= (uintptr_t)(1UL<<(tag_width-tag_sep)) ) {
-- 
GitLab