From fb1d494c143a91bb7a2347f15355335c531071b5 Mon Sep 17 00:00:00 2001 From: edopao Date: Fri, 27 Sep 2024 11:02:48 +0200 Subject: [PATCH] fix[next]: remove debug messages in OTF workflow (#1666) Remove some debug messages in OTF workflow related to AOT-toolchain. --- src/gt4py/next/otf/arguments.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gt4py/next/otf/arguments.py b/src/gt4py/next/otf/arguments.py index 2bd6c2ebe9..fd9a0c225a 100644 --- a/src/gt4py/next/otf/arguments.py +++ b/src/gt4py/next/otf/arguments.py @@ -205,9 +205,7 @@ def iter_size_args(args: tuple[Any, ...], inside_tuple: bool = False) -> Iterato This can be used to generate domain size arguments for FieldView Programs that use an implicit domain. """ - print(f"iter_size_args: matching args {tuple(type(arg) for arg in args)}") for arg in args: - print(f"iter_size_args: matching arg {arg}") match arg: case tuple(): # we only need the first field, because all fields in a tuple must have the same dims and sizes @@ -215,7 +213,6 @@ def iter_size_args(args: tuple[Any, ...], inside_tuple: bool = False) -> Iterato if first_field: yield from iter_size_args((first_field,)) case common.Field(): - print(f"iter_size_args: yielding from {arg.ndarray.shape}") yield from arg.ndarray.shape case _: pass