aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/graph_alexnet.cpp2
-rw-r--r--examples/graph_lenet.cpp2
-rw-r--r--examples/graph_squeezenet.cpp2
3 files changed, 0 insertions, 6 deletions
diff --git a/examples/graph_alexnet.cpp b/examples/graph_alexnet.cpp
index be852b94ff..1d041997e3 100644
--- a/examples/graph_alexnet.cpp
+++ b/examples/graph_alexnet.cpp
@@ -25,7 +25,6 @@
#error "This example needs to be built with -DARM_COMPUTE_CL"
#endif /* ARM_COMPUTE_CL */
-#include "arm_compute/core/utils/logging/LoggerRegistry.h"
#include "arm_compute/graph/Graph.h"
#include "arm_compute/graph/Nodes.h"
#include "arm_compute/runtime/CL/CLScheduler.h"
@@ -160,7 +159,6 @@ void main_graph_alexnet(int argc, const char **argv)
}
Graph graph;
- LoggerRegistry::get().create_reserved_loggers(LogLevel::INFO, { std::make_shared<StdPrinter>() });
graph << hint
<< Tensor(TensorInfo(TensorShape(227U, 227U, 3U, 1U), 1, DataType::F32),
diff --git a/examples/graph_lenet.cpp b/examples/graph_lenet.cpp
index 82f4c5a4c1..53b32d9ab4 100644
--- a/examples/graph_lenet.cpp
+++ b/examples/graph_lenet.cpp
@@ -25,7 +25,6 @@
#error "This example needs to be built with -DARM_COMPUTE_CL"
#endif /* ARM_COMPUTE_CL */
-#include "arm_compute/core/utils/logging/LoggerRegistry.h"
#include "arm_compute/graph/Graph.h"
#include "arm_compute/graph/Nodes.h"
#include "arm_compute/runtime/CL/CLScheduler.h"
@@ -103,7 +102,6 @@ void main_graph_lenet(int argc, const char **argv)
}
Graph graph;
- LoggerRegistry::get().create_reserved_loggers(LogLevel::INFO, { std::make_shared<StdPrinter>() });
//conv1 << pool1 << conv2 << pool2 << fc1 << act1 << fc2 << smx
graph << hint
diff --git a/examples/graph_squeezenet.cpp b/examples/graph_squeezenet.cpp
index 888dd5e5f1..a1a7b8619e 100644
--- a/examples/graph_squeezenet.cpp
+++ b/examples/graph_squeezenet.cpp
@@ -25,7 +25,6 @@
#error "This example needs to be built with -DARM_COMPUTE_CL"
#endif /* ARM_COMPUTE_CL */
-#include "arm_compute/core/utils/logging/LoggerRegistry.h"
#include "arm_compute/graph/Graph.h"
#include "arm_compute/graph/Nodes.h"
#include "arm_compute/graph/SubGraph.h"
@@ -125,7 +124,6 @@ void main_graph_squeezenet(int argc, const char **argv)
}
Graph graph;
- LoggerRegistry::get().create_reserved_loggers(LogLevel::INFO, { std::make_shared<StdPrinter>() });
graph << TargetHint::OPENCL
<< Tensor(TensorInfo(TensorShape(224U, 224U, 3U, batches), 1, DataType::F32), DummyAccessor())