2.3K Star 8.1K Fork 4.3K

GVPMindSpore / mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pass_base.h 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
sunsuodong 提交于 2022-04-13 01:30 . package remove old api
/**
* Copyright 2021 Huawei Technologies Co., Ltd
*
* 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.
*/
#ifndef MINDSPORE_LITE_INCLUDE_REGISTRY_PASS_BASE_H_
#define MINDSPORE_LITE_INCLUDE_REGISTRY_PASS_BASE_H_
#include <memory>
#include <string>
#include "include/api/types.h"
#include "mindapi/ir/func_graph.h"
namespace mindspore {
namespace registry {
/// \brief PassBase defined a base class, which provides an interface for user to operate FuncGraph.
class MS_API PassBase {
public:
/// \brief Constructor
///
/// \param[in] name Define pass name, which should be unique with each other.
explicit PassBase(const std::string &name = "PassBase") : name_(name) {}
/// \brief Destructor
virtual ~PassBase() = default;
/// \brief An interface for user to operate FuncGraph.
///
/// \param[in] func_graph Define the struct of the model.
///
/// \return Boolean value to represent whether the operation is successful or not.
virtual bool Execute(const api::FuncGraphPtr &func_graph) = 0;
private:
const std::string name_;
};
/// \brief PassBasePtr defined a shared_ptr type.
using PassBasePtr = std::shared_ptr<PassBase>;
} // namespace registry
} // namespace mindspore
#endif // MINDSPORE_LITE_INCLUDE_REGISTRY_PASS_BASE_H_
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
r2.0

搜索帮助