|
|
@@ -39,6 +39,8 @@ class TfliteLogicalNotParser : public TfliteNodeParser { |
|
|
public: |
|
|
public: |
|
|
TfliteLogicalNotParser() : TfliteNodeParser("LogicalNot") {} |
|
|
TfliteLogicalNotParser() : TfliteNodeParser("LogicalNot") {} |
|
|
|
|
|
|
|
|
|
|
|
~TfliteLogicalNotParser() override = default; |
|
|
|
|
|
|
|
|
ops::PrimitiveC *Parse(const std::unique_ptr<tflite::OperatorT> &tflite_op, |
|
|
ops::PrimitiveC *Parse(const std::unique_ptr<tflite::OperatorT> &tflite_op, |
|
|
const std::unique_ptr<tflite::ModelT> &tflite_model) override; |
|
|
const std::unique_ptr<tflite::ModelT> &tflite_model) override; |
|
|
}; |
|
|
}; |
|
|
@@ -47,6 +49,8 @@ class TfliteLogicalOrParser : public TfliteNodeParser { |
|
|
public: |
|
|
public: |
|
|
TfliteLogicalOrParser() : TfliteNodeParser("LogicalOr") {} |
|
|
TfliteLogicalOrParser() : TfliteNodeParser("LogicalOr") {} |
|
|
|
|
|
|
|
|
|
|
|
~TfliteLogicalOrParser() override = default; |
|
|
|
|
|
|
|
|
ops::PrimitiveC *Parse(const std::unique_ptr<tflite::OperatorT> &tflite_op, |
|
|
ops::PrimitiveC *Parse(const std::unique_ptr<tflite::OperatorT> &tflite_op, |
|
|
const std::unique_ptr<tflite::ModelT> &tflite_model) override; |
|
|
const std::unique_ptr<tflite::ModelT> &tflite_model) override; |
|
|
}; |
|
|
}; |
|
|
|