aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/test
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2021-12-16 11:28:37 +0000
committerFrancis Murtagh <francis.murtagh@arm.com>2021-12-17 14:10:07 +0000
commit446707fbc95ffedc7b2e463679dfcef1e827f649 (patch)
tree267133674d698f1cf58ba40e45a37baea4c256fd /python/pyarmnn/test
parent19bde17aa6971487d859f69dab980797bd7508b3 (diff)
downloadarmnn-446707fbc95ffedc7b2e463679dfcef1e827f649.tar.gz
Remove deprecated code for 22.02
Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I9114288e705936b12129b01bfd482bbe1260f80b
Diffstat (limited to 'python/pyarmnn/test')
-rw-r--r--python/pyarmnn/test/test_runtime.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/python/pyarmnn/test/test_runtime.py b/python/pyarmnn/test/test_runtime.py
index e558e84e28..a37772c5df 100644
--- a/python/pyarmnn/test/test_runtime.py
+++ b/python/pyarmnn/test/test_runtime.py
@@ -156,7 +156,9 @@ def test_load_network_properties_provided(random_runtime):
opt_network, _ = ann.Optimize(network, preferred_backends,
runtime.GetDeviceSpec(), ann.OptimizerOptions())
- properties = ann.INetworkProperties(True, True)
+ inputSource = ann.MemorySource_Malloc
+ outputSource = ann.MemorySource_Malloc
+ properties = ann.INetworkProperties(False, inputSource, outputSource)
net_id, messages = runtime.LoadNetwork(opt_network, properties)
assert "" == messages
assert net_id == 0
@@ -184,11 +186,6 @@ def test_network_properties_constructor(random_runtime):
assert net_id == 0
-def test_network_properties_deprecated_constructor():
- with pytest.warns(DeprecationWarning):
- warnings.warn("Deprecated: Use constructor with MemorySource argument instead.", DeprecationWarning)
-
-
def test_unload_network_fails_for_invalid_net_id(random_runtime):
preferred_backends = random_runtime[0]
network = random_runtime[1]