fix compile bug for testcases
This commit is contained in:
parent
cc4583d892
commit
b015c88021
|
@ -94,7 +94,9 @@ class LiteOpActor : public OpActor<lite::Tensor> {
|
||||||
kernel::LiteKernel *partial_node_ = nullptr;
|
kernel::LiteKernel *partial_node_ = nullptr;
|
||||||
kernel::LiteKernel *call_node_ = nullptr;
|
kernel::LiteKernel *call_node_ = nullptr;
|
||||||
std::unordered_map<Tensor *, Tensor *> isolate_input_map_; /* <calculate-tensor, src-input-tensor> */
|
std::unordered_map<Tensor *, Tensor *> isolate_input_map_; /* <calculate-tensor, src-input-tensor> */
|
||||||
|
#if defined(ENABLE_ARM) && defined(ENABLE_FP16)
|
||||||
bool support_fp16_ = false;
|
bool support_fp16_ = false;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class LiteSwitchOpActor : public LiteOpActor {
|
class LiteSwitchOpActor : public LiteOpActor {
|
||||||
|
|
Loading…
Reference in New Issue