• 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 
17 #ifndef MINDSPORE_CCSRC_FRONTEND_PARALLEL_OPS_INFO_STRIDED_SLICE_INFO_H_
18 #define MINDSPORE_CCSRC_FRONTEND_PARALLEL_OPS_INFO_STRIDED_SLICE_INFO_H_
19 
20 #include <string>
21 
22 #include <memory>
23 #include <unordered_map>
24 #include <vector>
25 
26 #include "ir/value.h"
27 #include "frontend/parallel/auto_parallel/operator_costmodel.h"
28 #include "frontend/parallel/ops_info/operator_info.h"
29 #include "frontend/parallel/strategy.h"
30 
31 namespace mindspore {
32 namespace parallel {
33 class StridedSliceInfo : public OperatorInfo {
34  public:
StridedSliceInfo(const std::string & operator_name,const Shapes & inputs_shape,const Shapes & outputs_shape,const PrimitiveAttrs & attrs)35   StridedSliceInfo(const std::string &operator_name, const Shapes &inputs_shape, const Shapes &outputs_shape,
36                    const PrimitiveAttrs &attrs)
37       : OperatorInfo(operator_name, inputs_shape, outputs_shape, attrs, std::make_shared<StridedSliceCost>()) {}
38   ~StridedSliceInfo() override = default;
39 
40   Status Init(const StrategyPtr &strategy) override;
41   Status InitForCostModel(const StrategyPtr &strategy) override;
42   std::vector<StrategyPtr> GenerateOpStrategies(int64_t) override;
43   Status SetCostUnderStrategy(const StrategyPtr &) override;
44   std::shared_ptr<Strategys> GenerateBatchStrategies() override;
45 
46  protected:
47   Status GetAttrs() override;
48   Status CheckStrategy(const StrategyPtr &strategy) override;
49   Status InferMirrorOps() override;
InferForwardCommunication()50   Status InferForwardCommunication() override { return SUCCESS; }
51   Status InferDevMatrixShape() override;
52   Status InferTensorMap() override;
53   Status GetMask(const std::string &mask_name, int64_t *mask_value);
54 
55  private:
56   std::vector<int64_t> begin_;
57   std::vector<int64_t> end_;
58   std::vector<int64_t> strides_;
59   int64_t begin_mask_ = 0;
60   int64_t end_mask_ = 0;
61   int64_t ellipsis_mask_ = 0;
62   int64_t new_axis_mask_ = 0;
63   int64_t shrink_axis_mask_ = 0;
64   bool has_mask_ = false;
65 };
66 
67 using StridedSliceInfoPtr = std::shared_ptr<StridedSliceInfo>;
68 }  // namespace parallel
69 }  // namespace mindspore
70 
71 #endif  // MINDSPORE_CCSRC_FRONTEND_PARALLEL_OPS_INFO_STRIDED_SLICE_INFO_H_
72