Reduce versbosity in manifest.py (#845)
This commit is contained in:
parent
a31b43b3f3
commit
a68e2f95f0
@ -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()))
|
||||
#
|
||||
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user