/** * Copyright 2019 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_CCSRC_PIPELINE_JIT_RESOURCE_H_ #define MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_H_ #include #include #include #include #include #include "pybind11/pybind11.h" #include "pybind11/stl.h" #include "utils/any.h" #include "utils/profile.h" #include "ir/manager.h" #include "pipeline/jit/resource_base.h" #include "pipeline/jit/static_analysis/prim.h" #include "pipeline/jit/static_analysis/static_analysis.h" namespace mindspore { namespace pipeline { namespace py = pybind11; const char kBackend[] = "backend"; const char kStepParallelGraph[] = "step_parallel"; const char kOutput[] = "output"; const char kPynativeGraphId[] = "graph_id"; class InferenceResource; using BuiltInTypeMap = std::unordered_map>; BuiltInTypeMap &GetMethodMap(); BuiltInTypeMap &GetAttrMap(); class Resource : public ResourceBase { public: explicit Resource(const py::object &obj = py::none()); ~Resource() override; abstract::AnalysisEnginePtr engine() { return engine_; } static bool IsTypeInBuiltInMap(const TypeId &type); static Any GetMethodPtr(const TypeId &type, const std::string &name); static Any GetAttrPtr(const TypeId &type, const std::string &name); const py::object &input() const { return input_; } FuncGraphPtr func_graph() const { return func_graph_; } void set_func_graph(const FuncGraphPtr &func_graph) { func_graph_ = func_graph; } const abstract::AbstractBasePtrList &args_spec() const { return args_spec_; } void set_args_spec(const abstract::AbstractBasePtrList &args_spec) { args_spec_ = args_spec; } // Reclaim resource and clear the cache. // ExecutorPy::Compile() can be called multiple times, so cache // should be cleared. void Clean(); private: abstract::AnalysisEnginePtr engine_; FuncGraphPtr func_graph_; abstract::AbstractBasePtrList args_spec_; py::object input_; bool is_cleaned_; }; using ResourcePtr = std::shared_ptr; } // namespace pipeline } // namespace mindspore #endif // MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_H_