1 /** 2 * Copyright 2021 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 PARALLEL_OPS_INFO_OUTPUT_INFO_H_ 18 #define PARALLEL_OPS_INFO_OUTPUT_INFO_H_ 19 20 #include <memory> 21 #include <string> 22 #include <unordered_map> 23 #include <vector> 24 25 #include "ir/value.h" 26 #include "frontend/parallel/ops_info/operator_info.h" 27 #include "frontend/parallel/ops_info/virtual_dataset_info.h" 28 #include "frontend/parallel/strategy.h" 29 30 namespace mindspore { 31 namespace parallel { 32 class VirtualOutputInfo : public VirtualDatasetInfo { 33 public: VirtualOutputInfo(const std::string & name,const Shapes & inputs_shape,const Shapes & outputs_shape,const PrimitiveAttrs & attrs)34 VirtualOutputInfo(const std::string &name, const Shapes &inputs_shape, const Shapes &outputs_shape, 35 const PrimitiveAttrs &attrs) 36 : VirtualDatasetInfo(name, inputs_shape, outputs_shape, attrs) {} 37 ~VirtualOutputInfo() override = default; 38 Status GenerateStrategies(int64_t stage_id) override; 39 40 protected: 41 Status CheckStrategy(const StrategyPtr &strategy) override; 42 }; 43 } // namespace parallel 44 } // namespace mindspore 45 46 #endif // PARALLEL_OPS_INFO_VIRTUAL_OUTPUT_INFO_H_ 47