aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/test/test_descriptors.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyarmnn/test/test_descriptors.py')
-rw-r--r--python/pyarmnn/test/test_descriptors.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/python/pyarmnn/test/test_descriptors.py b/python/pyarmnn/test/test_descriptors.py
index 663abc6ea9..0360196614 100644
--- a/python/pyarmnn/test/test_descriptors.py
+++ b/python/pyarmnn/test/test_descriptors.py
@@ -403,6 +403,10 @@ def test_elementwise_unary_descriptor_default_values():
assert desc.m_Operation == ann.UnaryOperation_Abs
+def test_logical_binary_descriptor_default_values():
+ desc = ann.LogicalBinaryDescriptor()
+ assert desc.m_Operation == ann.LogicalBinaryOperation_LogicalAnd
+
def test_view_descriptor_incorrect_input():
desc = ann.SplitterDescriptor(2, 3)
with pytest.raises(RuntimeError) as err:
@@ -493,7 +497,8 @@ generated_classes_names = list(map(lambda x: x[0], generated_classes))
'TransposeConvolution2dDescriptor',
'ElementwiseUnaryDescriptor',
'FillDescriptor',
- 'GatherDescriptor'])
+ 'GatherDescriptor',
+ 'LogicalBinaryDescriptor'])
class TestDescriptorMassChecks:
def test_desc_implemented(self, desc_name):
@@ -537,7 +542,8 @@ generated_classes_names = list(map(lambda x: x[0], generated_classes))
'TransposeConvolution2dDescriptor',
'ElementwiseUnaryDescriptor',
'FillDescriptor',
- 'GatherDescriptor'])
+ 'GatherDescriptor',
+ 'LogicalBinaryDescriptor'])
class TestDescriptorMassChecks:
def test_desc_implemented(self, desc_name):