From 0f954eb6c8bf2f6c8600c56f21fec6aa9ebf082e Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 23 Jun 2020 17:28:38 +0100 Subject: COMPMID-3324: Remove pretranspose_B support from NEGEMM Signed-off-by: Georgios Pinitas Change-Id: Idc60402bebdeeba7a998f69b63f302d75500763e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3449 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- examples/graph_vgg16.cpp | 10 ---------- examples/graph_vgg19.cpp | 10 ---------- 2 files changed, 20 deletions(-) (limited to 'examples') diff --git a/examples/graph_vgg16.cpp b/examples/graph_vgg16.cpp index f6996dadd5..b17e47d544 100644 --- a/examples/graph_vgg16.cpp +++ b/examples/graph_vgg16.cpp @@ -41,16 +41,6 @@ public: } bool do_setup(int argc, char **argv) override { - // Check if the system has enough RAM to run the example, systems with less than 2GB have - // to hint the API to minimize memory consumption otherwise it'll run out of memory and - // fail throwing the bad_alloc exception - arm_compute::MEMInfo meminfo; - const size_t mem_total = meminfo.get_total_in_kb(); - if(mem_total <= arm_compute::MEMInfo::TWO_GB_IN_KB) - { - arm_compute::MEMInfo::set_policy(arm_compute::MemoryPolicy::MINIMIZE); - } - // Parse arguments cmd_parser.parse(argc, argv); cmd_parser.validate(); diff --git a/examples/graph_vgg19.cpp b/examples/graph_vgg19.cpp index f9f5c213d5..6d38a936c3 100644 --- a/examples/graph_vgg19.cpp +++ b/examples/graph_vgg19.cpp @@ -40,16 +40,6 @@ public: } bool do_setup(int argc, char **argv) override { - // Check if the system has enough RAM to run the example, systems with less than 2GB have - // to hint the API to minimize memory consumption otherwise it'll run out of memory and - // fail throwing the bad_alloc exception - arm_compute::MEMInfo meminfo; - const size_t mem_total = meminfo.get_total_in_kb(); - if(mem_total <= arm_compute::MEMInfo::TWO_GB_IN_KB) - { - arm_compute::MEMInfo::set_policy(arm_compute::MemoryPolicy::MINIMIZE); - } - // Parse arguments cmd_parser.parse(argc, argv); cmd_parser.validate(); -- cgit v1.2.1