1 /** 2 * Copyright 2020 Huawei Technologies Co., Ltd 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_APPLY_MOMENTUM_PS_KERNEL_H_ 18 #define MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_APPLY_MOMENTUM_PS_KERNEL_H_ 19 20 #include <vector> 21 #include <memory> 22 #include "backend/kernel_compiler/cpu/ps/pserver_kernel.h" 23 #include "backend/kernel_compiler/cpu/apply_momentum_cpu_kernel.h" 24 25 namespace mindspore { 26 namespace kernel { 27 namespace ps { 28 class ApplyMomentumPSKernel : public ApplyMomentumCPUKernel, public PServerKernel { 29 public: ApplyMomentumPSKernel(size_t rank_id,size_t pserver_num,size_t worker_num)30 ApplyMomentumPSKernel(size_t rank_id, size_t pserver_num, size_t worker_num) 31 : PServerKernel(rank_id, pserver_num, worker_num) {} 32 ~ApplyMomentumPSKernel() override = default; 33 34 bool Execute(const std::vector<AddressPtr> &inputs, const std::vector<AddressPtr> &workspace, 35 const std::vector<AddressPtr> &outputs) override; 36 37 const std::vector<size_t> &input_sizes() const override; 38 const std::vector<size_t> &output_sizes() const override; 39 const std::vector<size_t> &workspace_sizes() const override; 40 }; 41 } // namespace ps 42 } // namespace kernel 43 } // namespace mindspore 44 45 #endif // MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_APPLY_MOMENTUM_PS_KERNEL_H_ 46