Files
openvino/model-optimizer/mo/ops/const.py

43 lines
1.3 KiB
Python
Raw Normal View History

2018-10-16 13:45:03 +03:00
"""
2019-04-12 18:25:53 +03:00
Copyright (c) 2018-2019 Intel Corporation
2018-10-16 13:45:03 +03:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import numpy as np
from mo.ops.op import Op
from mo.front.common.partial_infer.const import tf_const_infer
class Const(Op):
"""
Operation producing constant value stored in the attribute 'value' of shape 'shape'.
"""
op = 'Const'
def __init__(self, graph, attrs: dict = None):
super().__init__(graph, {
'type': __class__.op,
'op': __class__.op,
'infer': tf_const_infer,
'value': None,
'shape': None,
'data_type': None,
2019-04-12 18:25:53 +03:00
'out_ports_count': 1,
2018-10-16 13:45:03 +03:00
}, attrs)
if not isinstance(self.attrs['value'], np.ndarray):
2019-04-12 18:25:53 +03:00
self.attrs['value'] = np.array(self.attrs['value'])
2018-10-16 13:45:03 +03:00
self.attrs['shape'] = np.array(self.attrs['value'].shape, dtype=np.int64)