You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mindspore/tests/ut/python/parallel/test_one_weight_parameter.py

80 lines
2.5 KiB

# 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
5 years ago
import mindspore as ms
import mindspore.nn as nn
from mindspore import Tensor, Parameter, ParameterTuple
5 years ago
from mindspore import context
from mindspore.common.api import _executor
from mindspore.ops import composite as C
5 years ago
from mindspore.ops import operations as P
5 years ago
grad_by_list = C.GradOperation(get_by_list=True)
class NetWithLoss(nn.Cell):
def __init__(self, network, strategy3):
super(NetWithLoss, self).__init__()
self.loss = P.SoftmaxCrossEntropyWithLogits().shard(strategy3)
self.network = network
def construct(self, x, b):
predict = self.network(x)
return self.loss(predict, b)[0]
5 years ago
class OneStepCell(nn.Cell):
def __init__(self, network):
super(OneStepCell, self).__init__(auto_prefix=False)
self.network = network
self.weights = ParameterTuple(network.network.trainable_params())
5 years ago
def construct(self, data, label):
weights = self.weights
grads = grad_by_list(self.network, weights)(data, label)
return grads
5 years ago
def test_one_weight_parameter():
class Net(nn.Cell):
def __init__(self, strategy1, weight):
super().__init__()
self.weight = Parameter(weight, "w1", requires_grad=True)
self.matmul = P.MatMul().shard(strategy1)
def construct(self, x):
out = self.matmul(x, self.weight)
return out
context.set_auto_parallel_context(device_num=8, global_rank=0)
strategy1 = ((4, 1), (1, 2))
strategy3 = ((8, 1), (8, 1))
x = Tensor(np.ones([64, 32]), dtype=ms.float32)
weight = Tensor(np.ones([32, 64]), dtype=ms.float32)
b = Tensor(np.ones([64, 64]), dtype=ms.float32)
net = Net(strategy1, weight)
net_with_loss = NetWithLoss(net, strategy3)
train_net = OneStepCell(net_with_loss)
context.set_auto_parallel_context(parallel_mode="semi_auto_parallel")
train_net.set_auto_parallel()
_executor.compile(train_net, x, b)