# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.## 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."""mpc layers: basic: 'elementwise_add', 'elementwise_sub' math: 'mean', 'square', 'sum', 'square_error_cost' matrix: 'mul' ml: 'fc', 'relu', 'softmax'(todo) compare:'greater_than', 'greater_equal', 'less_than', 'less_equal', 'equal', 'not_equal'"""from.importbasicfrom.basicimport*from.importmathfrom.mathimport*from.importmatrixfrom.matriximport*from.importmlfrom.mlimport*from.importcomparefrom.compareimport*__all__=[]__all__+=basic.__all____all__+=math.__all____all__+=matrix.__all____all__+=ml.__all____all__+=compare.__all__