!12283 add new inner operator centralizaiton
From: @david-he91 Reviewed-by: Signed-off-by:pull/12283/MERGE
commit
07cb2f3e83
@ -0,0 +1,38 @@
|
||||
# Copyright 2021 Huawei Technologies Co., Ltd
|
||||
#
|
||||
# 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.
|
||||
# ============================================================================
|
||||
|
||||
"""Centralization op"""
|
||||
from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType
|
||||
|
||||
centralization_op_info = TBERegOp("Centralization") \
|
||||
.fusion_type("OPAQUE") \
|
||||
.async_flag(False) \
|
||||
.binfile_name("centralization.so") \
|
||||
.compute_cost(10) \
|
||||
.kernel_name("centralization") \
|
||||
.partial_flag(True) \
|
||||
.attr("axis", "required", "listInt", "all") \
|
||||
.input(0, "x", False, "required", "all") \
|
||||
.output(0, "y", False, "required", "all") \
|
||||
.op_pattern("reduce") \
|
||||
.dtype_format(DataType.F16_Default, DataType.F16_Default) \
|
||||
.dtype_format(DataType.F32_Default, DataType.F32_Default) \
|
||||
.get_op_info()
|
||||
|
||||
|
||||
@op_info_register(centralization_op_info)
|
||||
def _centralization_tbe():
|
||||
"""Centralization TBE register"""
|
||||
return
|
@ -0,0 +1,47 @@
|
||||
# Copyright 2021 Huawei Technologies Co., Ltd
|
||||
#
|
||||
# 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
|
||||
|
||||
import mindspore.context as context
|
||||
import mindspore.nn as nn
|
||||
from mindspore import Tensor
|
||||
from mindspore.common.api import ms_function
|
||||
from mindspore.ops import operations as P
|
||||
|
||||
class Net(nn.Cell):
|
||||
def __init__(self, axis=()):
|
||||
super(Net, self).__init__()
|
||||
self.centralization = P.Centralization()
|
||||
self.axis = axis
|
||||
|
||||
@ms_function
|
||||
def construct(self, inputs):
|
||||
return self.centralization(inputs, self.axis)
|
||||
|
||||
def test_net():
|
||||
np.random.seed(1)
|
||||
x1 = np.random.randn(2, 2).astype(np.float32)
|
||||
|
||||
context.set_context(mode=context.GRAPH_MODE, device_target="Ascend")
|
||||
centralization = Net(-1)
|
||||
output = centralization(Tensor(x1))
|
||||
print(x1)
|
||||
print(output.asnumpy())
|
||||
|
||||
context.set_context(mode=context.PYNATIVE_MODE, device_target="Ascend")
|
||||
centralization = Net(-1)
|
||||
output = centralization(Tensor(x1))
|
||||
print(x1)
|
||||
print(output.asnumpy())
|
Loading…
Reference in new issue