|
- /**
- * 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 <iostream>
- #include <vector>
- #include <string>
- #include <unordered_map>
- #include <memory>
- #include <unordered_set>
-
- #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<int64_t, std::unordered_map<std::string, Any>>;
-
- BuiltInTypeMap &GetMethodMap();
-
- BuiltInTypeMap &GetAttrMap();
-
- class MemoryCleaner {
- public:
- MemoryCleaner() = default;
- ~MemoryCleaner() = default;
- void Init();
-
- void RecordPrimitivePy(PrimitivePy *prim);
- void ReleasePrimitivePyObj(PrimitivePy *prim);
- void ClearPrimitivePyPythonObj();
-
- void RecordPynativeShortLifePrimitivePy(PrimitivePy *prim);
- void ErasePynativeShortLifePrimitivePy(PrimitivePy *prim);
- void ClearPynativeShortLifePrimitivePy();
-
- void EnterPynativeConstructProcess();
- void LeavePynativeConstructProcess();
- bool IsInPynativeConstructProcess() const;
- void EnterPynativeEndGraphProcess();
- void LeavePynativeEndGraphProcess();
- bool IsInPynativeEndGraphProcess() const;
-
- private:
- std::unordered_map<PrimitivePy *, bool> all_primitives_;
- // PrimitivePy objects that created in pynative construct process.These primitives should be released after construct
- // finished.
- std::unordered_set<PrimitivePy *> pynative_short_life_primitives_;
- // Sequence of primtive names in one construct process.
- std::vector<std::string> pynative_new_primtives_squence_;
- std::vector<std::vector<std::string>> pynative_released_history_;
- bool pynative_in_construct_process_{false};
- bool pynative_in_end_graph_process_{false};
- };
-
- 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; }
-
- void set_gpu_loopsink(const bool &flag, const int64_t size) {
- gpu_loopsink_flag_ = flag;
- gpu_loopsink_size_ = size;
- }
- bool gpu_loopsink_flag() { return gpu_loopsink_flag_; }
- int64_t gpu_loopsink_size() { return gpu_loopsink_size_; }
- // Reclaim resource and clear the cache.
- // ExecutorPy::Compile() can be called multiple times, so cache
- // should be cleared.
- void Clean();
- static MemoryCleaner &mem_cleaner() { return mem_cleaner_; }
-
- private:
- abstract::AnalysisEnginePtr engine_;
- FuncGraphPtr func_graph_;
- abstract::AbstractBasePtrList args_spec_;
- py::object input_;
- bool is_cleaned_;
- bool gpu_loopsink_flag_{false};
- int64_t gpu_loopsink_size_{1};
- // Used to handle mem leak objects.
- static MemoryCleaner mem_cleaner_;
- };
-
- using ResourcePtr = std::shared_ptr<pipeline::Resource>;
-
- } // namespace pipeline
- } // namespace mindspore
-
- #endif // MINDSPORE_CCSRC_PIPELINE_JIT_RESOURCE_H_
|