Reduce versbosity in manifest.py (#845)

This commit is contained in:
Yinghai Lu 2023-03-07 08:53:01 -08:00 committed by GitHub
parent a31b43b3f3
commit a68e2f95f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,8 +16,11 @@ from trmm_operation import *
from symm_operation import *
from conv2d_operation import *
from conv3d_operation import *
import logging
###################################################################################################
_LOGGER = logging.getLogger(__name__)
class EmitOperationKindLibrary:
def __init__(self, generated_path, kind, args):
@ -352,7 +355,7 @@ class Manifest:
self.operations[operation.operation_kind][configuration_name].append(operation)
self.operation_count += 1
else:
print("Culled {} from manifest".format(operation.procedural_name()))
_LOGGER.debug("Culled {} from manifest".format(operation.procedural_name()))
#
#