123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- /*************************************************************************
- * Copyright (C) [2019] by Cambricon, Inc. All rights reserved
- *
- * 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
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *************************************************************************/
- /**
- * @file mlu_memory_op.h
- *
- * This file contains a declaration of the MluMemoryOp class.
- */
- #ifndef EASYINFER_MLU_MEMORY_OP_H_
- #define EASYINFER_MLU_MEMORY_OP_H_
- #include <memory>
- #include "cxxutil/edk_attribute.h"
- #include "cxxutil/exception.h"
- #include "easyinfer/model_loader.h"
- namespace edk {
- /**
- * @brief MluMemoryOp is a MLU memory helper class.
- * @note It provides a easy way to manage memory on MLU.
- */
- class MluMemoryOp {
- public:
- /**
- * @brief Construct a new Mlu Memory Op object
- */
- MluMemoryOp();
- /**
- * @brief Set ModelLoader
- *
- * @note model loader is used for manage model's input and output memory easily,
- * do not need to set if this feature is not used.
- * @param model Model loader
- * @see edk::ModelLoader
- */
- void SetModel(std::shared_ptr<ModelLoader> model);
- /**
- * @brief Get model loader
- *
- * @return Model loader
- */
- std::shared_ptr<ModelLoader> Model() const;
- /**
- * @brief Alloc memory on CPU for model input
- *
- * @note Input data shape is described by input_shapes from ModelLoader
- * @attention Ensure SetModel has been called once
- * @return Alloced CPU memory
- */
- void **AllocCpuInput() const;
- /**
- * @brief Alloc memory on CPU for model output
- *
- * @note Output data shape is described by output_shapes from ModelLoader
- * @attention Ensure SetModel has been called once
- * @return Alloced CPU memory
- */
- void **AllocCpuOutput() const;
- /**
- * @brief Alloc memory on MLU according to nBytes.
- *
- * @param nBytes Alloced memory size in bytes
- * @return Alloced MLU memory
- */
- static void *AllocMlu(size_t nBytes);
- /**
- * @brief Alloc memory on MLU for model input
- *
- * @note Input data shape is described by input_data_descs from ModelLoader
- * @attention Ensure SetModel has been called once
- * @return Alloced MLU memory
- */
- void **AllocMluInput() const;
- /**
- * @brief Alloc memory on MLU for model output
- *
- * @note Input data shape is described by output_data_descs from ModelLoader
- * @attention Ensure SetModel has been called once
- * @return Alloced MLU memory
- */
- void **AllocMluOutput() const;
- /**
- * @brief Free input memory on CPU.
- *
- * @attention Ensure SetModel has been called once
- * @param ptr CPU memory pointer
- */
- void FreeCpuInput(void **ptr) const;
- /**
- * @brief Free output memory on CPU.
- *
- * @attention Ensure SetModel has been called once
- * @param ptr CPU memory pointer
- */
- void FreeCpuOutput(void **ptr) const;
- /**
- * @brief Free input memory on MLU
- *
- * @param ptr Memory array on MLU
- * @attention Ensure SetModel has been called once
- */
- void FreeMluInput(void **ptr) const;
- /**
- * @brief Free output memory on MLU
- *
- * @param ptr Memory array on MLU
- * @attention Ensure SetModel has been called once
- */
- void FreeMluOutput(void **ptr) const;
- /**
- * @brief Free memory on MLU
- *
- * @param ptr MLU memory pointer
- */
- static void FreeMlu(void *ptr);
- /**
- * @brief Copy model input data, from host(CPU) to device(MLU)
- *
- * @attention Ensure SetModel has been called once
- * @param mlu_dst Copy destination, memory on MLU
- * @param cpu_src Copy source, data on CPU
- */
- void MemcpyInputH2D(void **mlu_dst, void **cpu_src) const;
- /**
- * @brief Copy model output data, from device to host
- *
- * @attention Ensure SetModel has been called once
- * @param cpu_dst Copy destination, memory on CPU
- * @param mlu_src Copy source, data on MLU
- */
- void MemcpyOutputD2H(void **cpu_dst, void **mlu_src) const;
- /**
- * @brief Copy data from host to device
- *
- * @param mlu_dst Copy destination, memory on MLU
- * @param cpu_src Copy source, data on CPU
- * @param nBytes Memory size in bytes
- */
- static void MemcpyH2D(void *mlu_dst, void *cpu_src, size_t nBytes);
- /**
- * @brief Copy data from device to host
- *
- * @param cpu_dst Copy destination, memory on CPU
- * @param mlu_src Copy source, data on MLU
- * @param nBytes Memory size in bytes
- */
- static void MemcpyD2H(void *cpu_dst, void *mlu_src, size_t nBytes);
- /**
- * @brief Copy data from device to device
- *
- * @param mlu_dst Copy destination, memory on MLU
- * @param mlu_src Copy source, data on MLU
- * @param nBytes Memory size in bytes
- */
- static void MemcpyD2D(void *mlu_dst, void *mlu_src, size_t nBytes);
- private:
- std::shared_ptr<ModelLoader> model_;
- }; // class MluMemoryOp
- } // namespace edk
- #endif // EASYINFER_MLU_MEMORY_OP_H_
|