• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #ifndef MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_SPARSE_APPLY_LAZY_ADAM_PS_KERNEL_H_
17 #define MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_SPARSE_APPLY_LAZY_ADAM_PS_KERNEL_H_
18 
19 #include <vector>
20 #include <memory>
21 #include "backend/kernel_compiler/cpu/ps/pserver_kernel.h"
22 #include "backend/kernel_compiler/cpu/sparse_apply_lazy_adam_cpu_kernel.h"
23 
24 namespace mindspore {
25 namespace kernel {
26 namespace ps {
27 using mindspore::kernel::SparseApplyLazyAdamCPUKernel;
28 class SparseApplyLazyAdamPSKernel : public SparseApplyLazyAdamCPUKernel, public PServerKernel {
29  public:
SparseApplyLazyAdamPSKernel(size_t rank_id,size_t pserver_num,size_t worker_num)30   SparseApplyLazyAdamPSKernel(size_t rank_id, size_t pserver_num, size_t worker_num)
31       : PServerKernel(rank_id, pserver_num, worker_num) {}
32   ~SparseApplyLazyAdamPSKernel() override = default;
33 
34   void InitKernel(const CNodePtr &cnode,
35                   const std::shared_ptr<std::vector<std::shared_ptr<std::vector<size_t>>>> &) override;
36   void ReInit(const std::vector<std::vector<size_t>> &) override;
37   bool Execute(const std::vector<AddressPtr> &inputs, const std::vector<AddressPtr> &workspace,
38                const std::vector<AddressPtr> &outputs) override;
39 
40   const std::vector<size_t> &input_sizes() const override;
41   const std::vector<size_t> &output_sizes() const override;
42   const std::vector<size_t> &workspace_sizes() const override;
43 
44  protected:
45   void ReInit(const std::vector<AddressPtr> &) override;
46 };
47 }  // namespace ps
48 }  // namespace kernel
49 }  // namespace mindspore
50 
51 #endif  // MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_SPARSE_APPLY_LAZY_ADAM_PS_KERNEL_H_
52