/** * Copyright 2020 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 GE_GRAPH_LOAD_NEW_MODEL_MANAGER_ZERO_COPY_OFFSET_H_ #define GE_GRAPH_LOAD_NEW_MODEL_MANAGER_ZERO_COPY_OFFSET_H_ #include #include #include #include #include "external/ge/ge_api_error_codes.h" #include "framework/common/ge_types.h" #include "graph/debug/ge_attr_define.h" #include "graph/load/new_model_manager/zero_copy_task.h" #include "graph/utils/attr_utils.h" #include "graph/utils/tensor_utils.h" #include "runtime/mem.h" #include "task_info/task_info.h" using std::map; using std::set; using std::string; using std::vector; namespace ge { class ZeroCopyOffset { public: ZeroCopyOffset(); ~ZeroCopyOffset(); Status InitInputDataInfo(int64_t output_size, void *virtual_addr, const OpDescPtr &op_desc, bool &fusion_flag); void SetInputOutsideAddrs(const vector &output_offset_list, void *addr, const size_t &index, bool fusion_flag, std::set &real_virtual_addrs); void IsL2Fusion(const vector &fusion_basic_addrs, const int64_t &tensor_addr, bool &fusion_flag); Status InitOutputDataInfo(const vector &input_size_list, const vector &virtual_addr_list, const OpDescPtr &op_desc, const size_t &idx, bool &fusion_flag); void SetOutputOutsideAddrs(const int64_t &input_offset, const bool &fusion_flag, void *addr, std::vector &tensor_addrs); void SetOutsideAddrsValue(ZeroCopyTask &zero_copy_task, void *outside_addr, void *args, size_t offset); // basic_addr of l2-fusion void *GetBasicAddr() const { return basic_addr_; } // total num of out_of_data/in_of_phonyconcat uint32_t GetDataCount() const { return data_count_; } uint32_t GetAddrCount() const { return addr_count_; } // value of *data_info_ from davinci_model std::vector> GetDataInfo() const { return data_info_; } // relative_offset from zero_copy_relative_offset_ std::vector GetRelativeOffset() const { return relative_offset_; } // data_size of Data/Netoutput int64_t GetDataSize() const { return data_size_; } // value of *outside_addrs_ from davinci_model std::vector>> &GetOutsideAddrs() { return outside_addrs_; } // name of op std::string GetOpName() const { return op_name_; } private: void *basic_addr_ = nullptr; std::string op_name_; uint32_t data_count_ = 0; std::vector> data_info_; vector relative_offset_; int64_t data_size_ = 0; uint32_t addr_count_ = 0; std::vector>> outside_addrs_; std::vector zero_copy_basic_offset_; std::vector zero_copy_relative_offset_; }; } // namespace ge #endif // GE_GRAPH_LOAD_NEW_MODEL_MANAGER_ZERO_COPY_OFFSET_H_