2022-05-16 16:19:24 +08:00
|
|
|
# Copyright 2020-2022 Huawei Technologies Co., Ltd
|
2020-03-27 14:49:12 +08: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.
|
|
|
|
|
# ============================================================================
|
|
|
|
|
"""
|
|
|
|
|
test pooling api
|
|
|
|
|
"""
|
|
|
|
|
import numpy as np
|
2020-05-13 11:30:27 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
import mindspore.nn as nn
|
|
|
|
|
from mindspore import Tensor
|
2021-08-27 10:33:35 +08:00
|
|
|
from mindspore.common.api import _cell_graph_executor
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class AvgNet(nn.Cell):
|
|
|
|
|
def __init__(self,
|
|
|
|
|
kernel_size,
|
|
|
|
|
stride=None):
|
|
|
|
|
super(AvgNet, self).__init__()
|
|
|
|
|
self.avgpool = nn.AvgPool2d(kernel_size, stride)
|
|
|
|
|
|
|
|
|
|
def construct(self, x):
|
|
|
|
|
return self.avgpool(x)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_compile_avg():
|
|
|
|
|
net = AvgNet(3, 1)
|
|
|
|
|
x = Tensor(np.ones([1, 3, 16, 50]).astype(np.float32))
|
2021-08-27 10:33:35 +08:00
|
|
|
_cell_graph_executor.compile(net, x)
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class MaxNet(nn.Cell):
|
|
|
|
|
""" MaxNet definition """
|
2020-05-13 11:30:27 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
def __init__(self,
|
|
|
|
|
kernel_size,
|
|
|
|
|
stride=None,
|
|
|
|
|
padding=0):
|
2020-05-29 20:23:05 +08:00
|
|
|
_ = padding
|
2020-03-27 14:49:12 +08:00
|
|
|
super(MaxNet, self).__init__()
|
|
|
|
|
self.maxpool = nn.MaxPool2d(kernel_size,
|
2020-04-02 11:58:45 +08:00
|
|
|
stride)
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
|
def construct(self, x):
|
|
|
|
|
return self.maxpool(x)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_compile_max():
|
|
|
|
|
net = MaxNet(3, stride=1, padding=0)
|
|
|
|
|
x = Tensor(np.random.randint(0, 255, [1, 3, 6, 6]).astype(np.float32))
|
2021-08-27 10:33:35 +08:00
|
|
|
_cell_graph_executor.compile(net, x)
|
2020-04-21 15:17:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Avg1dNet(nn.Cell):
|
|
|
|
|
def __init__(self,
|
|
|
|
|
kernel_size,
|
|
|
|
|
stride=None):
|
|
|
|
|
super(Avg1dNet, self).__init__()
|
|
|
|
|
self.avg1d = nn.AvgPool1d(kernel_size, stride)
|
|
|
|
|
|
|
|
|
|
def construct(self, x):
|
|
|
|
|
return self.avg1d(x)
|
|
|
|
|
|
2020-05-13 11:30:27 +08:00
|
|
|
|
2020-04-21 15:17:24 +08:00
|
|
|
def test_avg1d():
|
2020-04-30 18:45:41 +08:00
|
|
|
net = Avg1dNet(6, 1)
|
2020-05-29 20:23:05 +08:00
|
|
|
input_ = Tensor(np.random.randint(0, 255, [1, 3, 6]).astype(np.float32))
|
2021-08-27 10:33:35 +08:00
|
|
|
_cell_graph_executor.compile(net, input_)
|
2022-05-16 16:19:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class AdaptiveAvgPool1dNet(nn.Cell):
|
|
|
|
|
"""AdaptiveAvgPool1d."""
|
|
|
|
|
|
|
|
|
|
def __init__(self, output_size):
|
|
|
|
|
super(AdaptiveAvgPool1dNet, self).__init__()
|
|
|
|
|
self.adaptive_avg_pool_1d = nn.AdaptiveAvgPool1d(output_size)
|
|
|
|
|
|
|
|
|
|
def construct(self, x):
|
|
|
|
|
return self.adaptive_avg_pool_1d(x)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_adaptive_avg_pool_1d():
|
|
|
|
|
"""
|
|
|
|
|
Feature: Test AdaptiveAvgPool1d.
|
|
|
|
|
Description: Test AdaptiveAvgPool1d functional.
|
|
|
|
|
Expectation: Success.
|
|
|
|
|
"""
|
|
|
|
|
net = AdaptiveAvgPool1dNet(2)
|
|
|
|
|
input_ = Tensor(np.random.randint(0, 255, [1, 3, 6]).astype(np.float32))
|
|
|
|
|
_cell_graph_executor.compile(net, input_)
|
2022-05-18 15:50:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class AdaptiveMaxPool1dNet(nn.Cell):
|
|
|
|
|
"""AdaptiveMaxPool1d."""
|
|
|
|
|
|
|
|
|
|
def __init__(self, output_size):
|
|
|
|
|
super(AdaptiveMaxPool1dNet, self).__init__()
|
|
|
|
|
self.adaptive_max_pool_1d = nn.AdaptiveMaxPool1d(output_size)
|
|
|
|
|
|
|
|
|
|
def construct(self, x):
|
|
|
|
|
return self.adaptive_max_pool_1d(x)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_adaptive_max_pool_1d():
|
|
|
|
|
"""
|
|
|
|
|
Feature: Test AdaptiveMaxPool1d.
|
|
|
|
|
Description: Test AdaptiveMaxPool1d functional.
|
|
|
|
|
Expectation: Success.
|
|
|
|
|
"""
|
|
|
|
|
net = AdaptiveMaxPool1dNet(2)
|
|
|
|
|
input_ = Tensor(np.random.randint(0, 255, [1, 3, 6]).astype(np.float32))
|
|
|
|
|
_cell_graph_executor.compile(net, input_)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class MaxUnpool2dNet(nn.Cell):
|
2022-10-21 17:03:29 +08:00
|
|
|
def __init__(self, kernel_size, stride=0, padding=0):
|
2022-10-12 20:15:45 +08:00
|
|
|
super(MaxUnpool2dNet, self).__init__()
|
2022-10-21 17:03:29 +08:00
|
|
|
self.max_unpool2d = nn.MaxUnpool2d(kernel_size, stride, padding)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
2022-10-21 17:03:29 +08:00
|
|
|
def construct(self, x, indices, output_size=None):
|
|
|
|
|
return self.max_unpool2d(x, indices, output_size)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class MaxUnpool1dNet(nn.Cell):
|
2022-10-21 17:03:29 +08:00
|
|
|
def __init__(self, kernel_size, stride=0, padding=0):
|
2022-10-12 20:15:45 +08:00
|
|
|
super(MaxUnpool1dNet, self).__init__()
|
2022-10-21 17:03:29 +08:00
|
|
|
self.max_unpool1d = nn.MaxUnpool1d(kernel_size, stride, padding)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
2022-10-21 17:03:29 +08:00
|
|
|
def construct(self, x, indices, output_size=None):
|
|
|
|
|
return self.max_unpool1d(x, indices, output_size)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class MaxUnpool3dNet(nn.Cell):
|
2022-10-21 17:03:29 +08:00
|
|
|
def __init__(self, kernel_size, stride=0, padding=0):
|
2022-10-12 20:15:45 +08:00
|
|
|
super(MaxUnpool3dNet, self).__init__()
|
2022-10-21 17:03:29 +08:00
|
|
|
self.max_unpool3d = nn.MaxUnpool3d(kernel_size, stride, padding)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
2022-10-21 17:03:29 +08:00
|
|
|
def construct(self, x, indices, output_size=None):
|
|
|
|
|
return self.max_unpool3d(x, indices, output_size)
|
2022-10-12 20:15:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_max_unpool2d_normal():
|
|
|
|
|
"""
|
|
|
|
|
Feature: max_unpool2d
|
|
|
|
|
Description: Verify the result of MaxUnpool2d
|
|
|
|
|
Expectation: success
|
|
|
|
|
"""
|
|
|
|
|
x = Tensor(np.array([[[6., 8.], [14., 16.]]]).astype(np.float32))
|
|
|
|
|
incices = Tensor(np.array([[[5, 7], [13, 15]]]).astype(np.int64))
|
|
|
|
|
net = MaxUnpool2dNet(kernel_size=2, stride=2, padding=0)
|
|
|
|
|
_cell_graph_executor.compile(net, x, incices)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_max_unpool1d_normal():
|
|
|
|
|
"""
|
|
|
|
|
Feature: max_unpool1d
|
|
|
|
|
Description: Verify the result of MaxUnpool1d
|
|
|
|
|
Expectation: success
|
|
|
|
|
"""
|
|
|
|
|
x = Tensor(np.array([[2, 4, 6, 8]]).astype(np.float32))
|
|
|
|
|
incices = Tensor(np.array([[1, 3, 5, 7]]).astype(np.int64))
|
|
|
|
|
net = MaxUnpool1dNet(kernel_size=2, stride=2, padding=0)
|
|
|
|
|
_cell_graph_executor.compile(net, x, incices)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_max_unpool3d_normal():
|
|
|
|
|
"""
|
|
|
|
|
Feature: max_unpool3d
|
|
|
|
|
Description: Verify the result of MaxUnpool3d
|
|
|
|
|
Expectation: success
|
|
|
|
|
"""
|
|
|
|
|
x = Tensor(np.array([[[[[7.]]]], [[[[15.]]]]]).astype(np.float32))
|
|
|
|
|
incices = Tensor(np.array([[[[[7]]]], [[[[7]]]]]).astype(np.int64))
|
|
|
|
|
net = MaxUnpool3dNet(kernel_size=2, stride=1, padding=0)
|
|
|
|
|
_cell_graph_executor.compile(net, x, incices)
|