mirror of https://github.com/alibaba/MNN.git
172 lines
5.2 KiB
C++
172 lines
5.2 KiB
C++
//
|
|
// Session.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2018/07/30.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef Session_hpp
|
|
#define Session_hpp
|
|
|
|
#include <MNN/Tensor.hpp>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include "Pipeline.hpp"
|
|
#include "Schedule.hpp"
|
|
#include "core/Backend.hpp"
|
|
#include "core/Macro.h"
|
|
#include "shape/SizeComputer.hpp"
|
|
#define MNN_DEFAULT_TUNING_NUMBER 5
|
|
|
|
namespace MNN {
|
|
struct Net;
|
|
/** infer unit. multiple sessions could share one net. */
|
|
class MNN_PUBLIC Session {
|
|
public:
|
|
struct ModeGroup {
|
|
Interpreter::SessionMode callBackMode = Interpreter::Session_Debug;
|
|
Interpreter::SessionMode inputMode = Interpreter::Session_Input_Inside;
|
|
Interpreter::SessionMode outputMode = Interpreter::Session_Output_Inside;
|
|
Interpreter::SessionMode backendMode = Interpreter::Session_Backend_Fix;
|
|
Interpreter::SessionMode resizeMode = Interpreter::Session_Resize_Direct;
|
|
Interpreter::SessionMode memoryUsageMode = Interpreter::Session_Memory_Collect;
|
|
Interpreter::SessionMode codegenMode = Interpreter::Session_Codegen_Disable;
|
|
int maxTuningNumber = MNN_DEFAULT_TUNING_NUMBER;
|
|
int geometryMask = 0xFFFF;
|
|
bool checkNetBuffer = true;
|
|
RuntimeHint runtimeHint;
|
|
void setHint(Interpreter::HintMode hint, int value);
|
|
void setHint(Interpreter::HintMode hint, int* value, size_t size);
|
|
void setHintPtr(Interpreter::HintMode hint, int value);
|
|
void setMode(Interpreter::SessionMode mode);
|
|
void setExternalPath(std::string path, int type);
|
|
};
|
|
Session(Schedule::ScheduleInfo&& info, const ModeGroup& mode,
|
|
RuntimeInfo&& runtime);
|
|
~Session();
|
|
|
|
Session* clone(RuntimeInfo&& runtime, std::shared_ptr<Schedule::ScheduleInfo> sharedConst);
|
|
static void createPipelineBackend(Schedule::PipelineInfo& iter, RuntimeInfo& runtime);
|
|
|
|
public:
|
|
/**
|
|
* @brief infer.
|
|
* @return result code.
|
|
*/
|
|
ErrorCode run() const;
|
|
/**
|
|
* @brief infer with callbacks and sync option.
|
|
* @param enterCallback callback before each op.
|
|
* @param exitCallback callback after each op.
|
|
* @param sync wait until all ops done before return or not.
|
|
* @return result code.
|
|
*/
|
|
ErrorCode runWithCallBack(const TensorCallBackWithInfo& enterCallback, const TensorCallBackWithInfo& exitCallback,
|
|
bool sync = false) const;
|
|
|
|
bool getInfo(Interpreter::SessionInfoCode code, void* ptr) const;
|
|
|
|
void openResizeCheck();
|
|
ErrorCode fixResizeCache();
|
|
public:
|
|
/**
|
|
* @brief resize tensors and buffers responding to input changes.
|
|
* @return result code.
|
|
*/
|
|
ErrorCode resize();
|
|
|
|
/**
|
|
* @brief set if needs resize.
|
|
* @param flag needs resize or not.
|
|
*/
|
|
void setNeedResize(bool flag = true) {
|
|
mNeedResize = flag;
|
|
}
|
|
|
|
void setNeedMalloc(bool flag = true) {
|
|
mNeedMalloc = flag;
|
|
}
|
|
|
|
Runtime* getCPURuntime() {
|
|
return mRuntime.second.get();
|
|
}
|
|
const RuntimeInfo& getRuntime() const {
|
|
return mRuntime;
|
|
}
|
|
|
|
public:
|
|
/**
|
|
* @brief get backend that create the tensor.
|
|
* @param tensor given tensor.
|
|
* @return backend that create the tensor, NULL if the tensor is created by default backend (CPU backend).
|
|
*/
|
|
const Backend* getBackEnd(const Tensor* tensor) const;
|
|
|
|
/**
|
|
* @brief get input tensor for given op name.
|
|
* @param name given op name. if NULL, return first input tensor.
|
|
* @return input tensor if found, NULL otherwise.
|
|
*/
|
|
Tensor* getInput(const char* name) const;
|
|
|
|
/**
|
|
* @brief get output tensor for given op name.
|
|
* @param name given op name. if NULL, return first output tensor.
|
|
* @return output tensor if found, NULL otherwise.
|
|
*/
|
|
Tensor* getOutput(const char* name) const;
|
|
|
|
/**
|
|
* @brief get output tensors map.
|
|
* @return get output tensors map.
|
|
*/
|
|
const std::map<std::string, Tensor*>& getOutputAll() const;
|
|
const std::map<std::string, Tensor*>& getInputAll() const;
|
|
|
|
/**
|
|
* @brief check session is valid or not.
|
|
* @return session is valid or not.
|
|
*/
|
|
inline bool valid() const {
|
|
return mValid;
|
|
}
|
|
|
|
/**
|
|
* @brief update the session's const value to origin model's const blob.
|
|
* @return errorcode
|
|
*/
|
|
ErrorCode updateToModel(Net* net) const;
|
|
|
|
void waitAsyncResize();
|
|
bool hasAsyncWork();
|
|
bool loadCache(const void* buffer, size_t size);
|
|
std::pair<const void*, size_t> getCache();
|
|
|
|
Tensor* getTensor(int index) const;
|
|
Schedule::PipelineInfo& getPipelineInfo(int index) const;
|
|
protected:
|
|
const std::vector<std::shared_ptr<Pipeline>>& getPipelines() const {
|
|
return this->mPipelines;
|
|
}
|
|
|
|
private:
|
|
void _setUpTensorInfo(const Schedule::ScheduleInfo& info);
|
|
|
|
private:
|
|
RuntimeInfo mRuntime;
|
|
std::vector<std::shared_ptr<Pipeline>> mPipelines;
|
|
bool mNeedResize = true;
|
|
bool mValid = true;
|
|
bool mNeedMalloc = true;
|
|
Interpreter::SessionMode mCallBackMode;
|
|
Interpreter::SessionMode mMemoryUsageMode;
|
|
Interpreter::SessionMode mCodegenMode;
|
|
Schedule::ScheduleInfo mInfo;
|
|
ModeGroup mMode;
|
|
};
|
|
} // namespace MNN
|
|
|
|
#endif /* Session_hpp */
|