From efce6fa18d3b9e76d34216661ef993a4e0c447d7 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 19 Apr 2015 22:47:12 -0500 Subject: [PATCH] Remove extraneous debug print statements --- loopy/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/loopy/__init__.py b/loopy/__init__.py index 194a2c7b1..5834bdfa5 100644 --- a/loopy/__init__.py +++ b/loopy/__init__.py @@ -713,8 +713,6 @@ def link_inames(knl, inames, new_iname, within=None, tag=None): all_equal = True first_proj = projections[0] for proj in projections[1:]: - print(proj.gist(first_proj)) - print(first_proj.gist(proj)) all_equal = all_equal and (proj <= first_proj and first_proj <= proj) if not all_equal: -- GitLab