110 lines
2.2 KiB
C++
110 lines
2.2 KiB
C++
/**
|
|
* 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.
|
|
|
|
* File model_process.h
|
|
* Description: handle model process
|
|
*/
|
|
#pragma once
|
|
#include <iostream>
|
|
#include "utils.h"
|
|
#include "acl/acl.h"
|
|
|
|
/**
|
|
* ModelProcess
|
|
*/
|
|
class ModelProcess {
|
|
public:
|
|
/**
|
|
* @brief Constructor
|
|
*/
|
|
ModelProcess();
|
|
|
|
/**
|
|
* @brief Destructor
|
|
*/
|
|
~ModelProcess();
|
|
|
|
/**
|
|
* @brief load model from file with mem
|
|
* @param [in] modelPath: model path
|
|
* @return result
|
|
*/
|
|
Result LoadModelFromFileWithMem(const char *modelPath);
|
|
|
|
/**
|
|
* @brief unload model
|
|
*/
|
|
void Unload();
|
|
|
|
/**
|
|
* @brief create model desc
|
|
* @return result
|
|
*/
|
|
Result CreateDesc();
|
|
|
|
/**
|
|
* @brief destroy desc
|
|
*/
|
|
void DestroyDesc();
|
|
|
|
/**
|
|
* @brief create model input
|
|
* @param [in] inputDataBuffer: input buffer
|
|
* @param [in] bufferSize: input buffer size
|
|
* @return result
|
|
*/
|
|
Result CreateInput(void *inputDataBuffer, size_t bufferSize);
|
|
|
|
/**
|
|
* @brief destroy input resource
|
|
*/
|
|
void DestroyInput();
|
|
|
|
/**
|
|
* @brief create output buffer
|
|
* @return result
|
|
*/
|
|
Result CreateOutput();
|
|
|
|
/**
|
|
* @brief destroy output resource
|
|
*/
|
|
void DestroyOutput();
|
|
|
|
/**
|
|
* @brief model execute
|
|
* @return result
|
|
*/
|
|
Result Execute();
|
|
|
|
/**
|
|
* @brief get model output data
|
|
* @return output dataset
|
|
*/
|
|
aclmdlDataset *GetModelOutputData();
|
|
|
|
private:
|
|
bool loadFlag_; // model load flag
|
|
uint32_t modelId_;
|
|
void *modelMemPtr_;
|
|
size_t modelMemSize_;
|
|
void *modelWeightPtr_;
|
|
size_t modelWeightSize_;
|
|
aclmdlDesc *modelDesc_;
|
|
aclmdlDataset *input_;
|
|
aclmdlDataset *output_;
|
|
};
|
|
|