2020-03-27 14:49:12 +08:00
|
|
|
# Copyright 2019 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
|
2020-05-18 16:42:35 +08:00
|
|
|
|
|
|
|
import mindspore as ms
|
2020-03-27 14:49:12 +08:00
|
|
|
import mindspore.nn as nn
|
|
|
|
from mindspore import Tensor
|
2020-05-18 16:42:35 +08:00
|
|
|
from mindspore import context
|
2020-03-27 14:49:12 +08:00
|
|
|
from mindspore.common.api import _executor
|
2020-05-18 16:42:35 +08:00
|
|
|
from mindspore.common.initializer import initializer
|
2020-05-18 10:31:46 +08:00
|
|
|
from mindspore.common.parameter import Parameter, ParameterTuple
|
2020-05-18 16:42:35 +08:00
|
|
|
from mindspore.ops import composite as C
|
|
|
|
from mindspore.ops import operations as P
|
2020-03-27 14:49:12 +08:00
|
|
|
from mindspore.ops.operations.comm_ops import _VirtualDataset
|
2020-05-18 16:42:35 +08:00
|
|
|
from tests.ut.python.ops.test_math_ops import VirtualLoss
|
2020-05-18 10:31:46 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
context.set_context(mode=context.GRAPH_MODE)
|
|
|
|
|
2020-05-18 10:31:46 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
class NetWithLoss(nn.Cell):
|
|
|
|
def __init__(self, network, types, shapes, output_num, strategy3=None, strategy4=None, axis=-1):
|
|
|
|
super(NetWithLoss, self).__init__()
|
|
|
|
self.get_next = P.GetNext(types, shapes, output_num, "")
|
|
|
|
self.one_hot = P.OneHot(axis=axis).set_strategy(strategy3)
|
|
|
|
self.on_value = Tensor(1.0, ms.float32)
|
|
|
|
self.off_value = Tensor(0.0, ms.float32)
|
|
|
|
self.loss = P.SoftmaxCrossEntropyWithLogits().set_strategy(strategy4)
|
|
|
|
self.network = network
|
|
|
|
|
|
|
|
def construct(self):
|
|
|
|
data, label = self.get_next()
|
|
|
|
predict = self.network(data)
|
|
|
|
label = self.one_hot(label, 64, self.on_value, self.off_value)
|
|
|
|
return self.loss(predict, label)[0]
|
|
|
|
|
|
|
|
|
|
|
|
class GradWrap(nn.Cell):
|
|
|
|
def __init__(self, network):
|
|
|
|
super(GradWrap, self).__init__()
|
|
|
|
self.network = network
|
|
|
|
self.weights = ParameterTuple(network.trainable_params())
|
|
|
|
|
|
|
|
def construct(self):
|
|
|
|
return C.grad_by_list(self.network, self.weights)()
|
|
|
|
|
2020-05-07 10:40:59 +08:00
|
|
|
|
|
|
|
def compile(net):
|
|
|
|
net.set_auto_parallel()
|
|
|
|
_executor.compile(net)
|
|
|
|
|
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
def test_get_next_single():
|
|
|
|
class Net(nn.Cell):
|
|
|
|
def __init__(self, channel=1, w=0.25):
|
|
|
|
super().__init__()
|
|
|
|
self.norm = P.L2Normalize(axis=1)
|
|
|
|
self.prelu = P.PReLU()
|
2020-05-18 10:31:46 +08:00
|
|
|
self.w = Parameter(initializer(w, [channel, ]), name='w')
|
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
def construct(self, data):
|
|
|
|
x = self.norm(data)
|
|
|
|
x = self.prelu(x, self.w)
|
|
|
|
return x
|
|
|
|
|
2020-05-18 10:31:46 +08:00
|
|
|
net = GradWrap(NetWithLoss(Net(), [ms.float32, ms.int32], [[32, 64], [32]], 2))
|
2020-03-27 14:49:12 +08:00
|
|
|
_executor.compile(net)
|
|
|
|
|
2020-05-18 10:31:46 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
def test_get_next_semi_auto_parallel():
|
|
|
|
class Net(nn.Cell):
|
|
|
|
def __init__(self, channel=1, w=0.25, strategy1=None, strategy2=None):
|
|
|
|
super().__init__()
|
|
|
|
self.norm = P.L2Normalize().set_strategy(strategy1)
|
|
|
|
self.prelu = P.PReLU().set_strategy(strategy2)
|
2020-05-18 10:31:46 +08:00
|
|
|
self.w = Parameter(initializer(w, [channel, ]), name='w')
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
def construct(self, data):
|
|
|
|
x = self.norm(data)
|
|
|
|
x = self.prelu(x, self.w)
|
|
|
|
return x
|
|
|
|
|
|
|
|
context.set_auto_parallel_context(device_num=4, global_rank=0)
|
2020-05-18 10:31:46 +08:00
|
|
|
network = Net(strategy1=((1, 4),), strategy2=((4, 1), (1,)))
|
|
|
|
strategy3 = ((4, 1), (), ())
|
|
|
|
strategy4 = ((4, 1), (4, 1))
|
|
|
|
net_with_loss = NetWithLoss(network, [ms.float32, ms.int32], [[32, 64], [32]], 2, strategy3=strategy3,
|
|
|
|
strategy4=strategy4)
|
2020-03-27 14:49:12 +08:00
|
|
|
net = GradWrap(net_with_loss)
|
|
|
|
context.set_auto_parallel_context(parallel_mode="semi_auto_parallel")
|
2020-05-07 10:40:59 +08:00
|
|
|
compile(net)
|
2020-03-27 14:49:12 +08:00
|
|
|
|
2020-05-18 10:31:46 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
def test_get_next_semi_auto_parallel1():
|
|
|
|
class Net(nn.Cell):
|
|
|
|
def __init__(self, channel=1, w=0.25, strategy1=None, strategy2=None):
|
|
|
|
super().__init__()
|
|
|
|
self.norm = P.L2Normalize().set_strategy(strategy1)
|
|
|
|
self.prelu = P.PReLU().set_strategy(strategy2)
|
2020-05-18 10:31:46 +08:00
|
|
|
self.w = Parameter(initializer(w, [channel, ]), name='w')
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
def construct(self, data):
|
|
|
|
x = self.norm(data)
|
|
|
|
x = self.prelu(x, self.w)
|
|
|
|
return x
|
|
|
|
|
|
|
|
context.set_auto_parallel_context(device_num=4, global_rank=0)
|
2020-05-18 10:31:46 +08:00
|
|
|
network = Net(strategy1=((1, 4),), strategy2=((4, 1), (1,)))
|
|
|
|
strategy3 = ((1, 4), (), ())
|
|
|
|
strategy4 = ((4, 1), (4, 1))
|
|
|
|
net_with_loss = NetWithLoss(network, [ms.float32, ms.int32], [[32, 64], [32]], 2, strategy3=strategy3,
|
|
|
|
strategy4=strategy4)
|
2020-03-27 14:49:12 +08:00
|
|
|
net = GradWrap(net_with_loss)
|
|
|
|
context.set_auto_parallel_context(parallel_mode="semi_auto_parallel")
|
2020-05-07 10:40:59 +08:00
|
|
|
compile(net)
|
2020-03-27 14:49:12 +08:00
|
|
|
|
2020-05-18 10:31:46 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
def test_get_next_auto_parallel():
|
|
|
|
class Net(nn.Cell):
|
|
|
|
def __init__(self, channel=1, w=0.25, strategy1=None, strategy2=None):
|
|
|
|
super().__init__()
|
|
|
|
self.norm = P.L2Normalize().set_strategy(strategy1)
|
|
|
|
self.prelu = P.PReLU().set_strategy(strategy2)
|
2020-05-18 10:31:46 +08:00
|
|
|
self.w = Parameter(initializer(w, [channel, ]), name='w')
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
def construct(self, data):
|
|
|
|
x = self.norm(data)
|
|
|
|
x = self.prelu(x, self.w)
|
|
|
|
return x
|
|
|
|
|
|
|
|
context.set_auto_parallel_context(device_num=4, global_rank=0)
|
|
|
|
network = Net()
|
2020-05-18 10:31:46 +08:00
|
|
|
net_with_loss = NetWithLoss(network, [ms.float32, ms.int32], [[32, 64], [32]], 2)
|
2020-03-27 14:49:12 +08:00
|
|
|
net = GradWrap(net_with_loss)
|
|
|
|
context.set_auto_parallel_context(parallel_mode="auto_parallel")
|
2020-05-07 10:40:59 +08:00
|
|
|
compile(net)
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_only_one_get_next():
|
|
|
|
class Net(nn.Cell):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
2020-05-18 10:31:46 +08:00
|
|
|
self.get_next = P.GetNext([ms.float32, ms.int32], [[32, 64], [32]], 2, "")
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
def construct(self):
|
|
|
|
return self.get_next()
|
|
|
|
|
|
|
|
context.set_auto_parallel_context(device_num=4, global_rank=0)
|
|
|
|
net = Net()
|
|
|
|
context.set_auto_parallel_context(parallel_mode="semi_auto_parallel")
|
2020-05-07 10:40:59 +08:00
|
|
|
compile(net)
|