# # 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.importpaddle.nnasnnclassBaseGate(nn.Layer):def__init__(self,num_expert,world_size):super().__init__()self.world_size=world_sizeself.num_expert=num_expertself.tot_expert=world_size*num_expertself.loss=Nonedefforward(self,x):raiseNotImplementedError("Please implement the forward function.")defset_loss(self,loss):self.loss=lossdefget_loss(self,clear=True):loss=self.lossifclear:self.loss=Nonereturnloss