28 lines
696 B
Python
28 lines
696 B
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#! [fft:operation]
|
|
from mo.front.common.partial_infer.elemental import copy_shape_infer
|
|
from mo.graph.graph import Node, Graph
|
|
from mo.ops.op import Op
|
|
|
|
|
|
class FFT(Op):
|
|
op = 'FFT'
|
|
enabled = False
|
|
|
|
def __init__(self, graph: Graph, attrs: dict):
|
|
super().__init__(graph, {
|
|
'type': self.op,
|
|
'op': self.op,
|
|
'version': 'custom_opset',
|
|
'inverse': None,
|
|
'in_ports_count': 1,
|
|
'out_ports_count': 1,
|
|
'infer': copy_shape_infer
|
|
}, attrs)
|
|
|
|
def backend_attrs(self):
|
|
return ['inverse']
|
|
#! [fft:operation]
|