IVGCVSW-5381 TfLiteDelegate: Implement the Logical operators
authorMatthew Sloyan <matthew.sloyan@arm.com>
Thu, 26 Nov 2020 10:54:22 +0000 (10:54 +0000)
committerMatthew Sloyan <matthew.sloyan@arm.com>
Mon, 7 Dec 2020 09:41:42 +0000 (09:41 +0000)
commitc8eb955a2c9f0b432fe932e2df8445f242080e31
treecb3a74ae4d3a2a558f0589a45a6d1ea6d58e02c3
parent97451b4429b717f6ff19c10716d1d82a2ff6f155
IVGCVSW-5381 TfLiteDelegate: Implement the Logical operators

 * Implemented Logical AND, NOT and OR operators.
 * NOT uses existing ElementwiseUnary VisitLayer function & tests.
 * AND/OR uses new LogicalBinary VisitLayer function & tests.

Signed-off-by: Matthew Sloyan <matthew.sloyan@arm.com>
Change-Id: I5e7f1e78b30c36ac7f14c70a712b54f98d664b83
delegate/CMakeLists.txt
delegate/src/LogicalBinary.hpp [new file with mode: 0644]
delegate/src/armnn_delegate.cpp
delegate/src/test/ElementwiseUnaryTestHelper.hpp
delegate/src/test/LogicalTest.cpp [new file with mode: 0644]
delegate/src/test/LogicalTestHelper.hpp [new file with mode: 0644]