aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2020-06-23 17:28:38 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-06-25 13:04:57 +0000
commit0f954eb6c8bf2f6c8600c56f21fec6aa9ebf082e (patch)
tree2b01d006548db93d8870f638789a41127496f000 /examples
parent0b5af9f2751ad6cb7ce76c577a6e67abe6dc8aa1 (diff)
downloadComputeLibrary-0f954eb6c8bf2f6c8600c56f21fec6aa9ebf082e.tar.gz
COMPMID-3324: Remove pretranspose_B support from NEGEMM
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: Idc60402bebdeeba7a998f69b63f302d75500763e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3449 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/graph_vgg16.cpp10
-rw-r--r--examples/graph_vgg19.cpp10
2 files changed, 0 insertions, 20 deletions
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();