aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/backendsCommon/test')
-rw-r--r--src/backends/backendsCommon/test/CompatibilityTests.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/backends/backendsCommon/test/CompatibilityTests.cpp b/src/backends/backendsCommon/test/CompatibilityTests.cpp
index ff842e9c56..e1462e0d2e 100644
--- a/src/backends/backendsCommon/test/CompatibilityTests.cpp
+++ b/src/backends/backendsCommon/test/CompatibilityTests.cpp
@@ -180,7 +180,9 @@ TEST_CASE ("Ref_Backends_Capability_Test")
{"AsyncExecution", true},
{"ProtectedContentAllocation", false},
{"ConstantTensorsAsInputs", true},
- {"PreImportIOTensors", false}});
+ {"PreImportIOTensors", false},
+ {"ExternallyManagedMemory", false},
+ {"MultiAxisPacking", false}});
}
#endif
@@ -197,7 +199,9 @@ TEST_CASE ("Neon_Backends_Capability_Test")
{"AsyncExecution", false},
{"ProtectedContentAllocation", false},
{"ConstantTensorsAsInputs", false},
- {"PreImportIOTensors", false}});
+ {"PreImportIOTensors", false},
+ {"ExternallyManagedMemory", false},
+ {"MultiAxisPacking", false}});
}
#endif
@@ -214,7 +218,9 @@ TEST_CASE ("Cl_Backends_Capability_Test")
{"AsyncExecution", false},
{"ProtectedContentAllocation", true},
{"ConstantTensorsAsInputs", false},
- {"PreImportIOTensors", false}});
+ {"PreImportIOTensors", false},
+ {"ExternallyManagedMemory", false},
+ {"MultiAxisPacking", false}});
}
#endif