mirror of https://github.com/alibaba/MNN.git
14 lines
180 B
C++
14 lines
180 B
C++
|
#ifndef RuntimeAttr_hpp
|
||
|
#define RuntimeAttr_hpp
|
||
|
#include "core/Session.hpp"
|
||
|
namespace MNN{
|
||
|
namespace Express {
|
||
|
struct RuntimeAttr {
|
||
|
Session::ModeGroup modes;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|