aboutsummaryrefslogtreecommitdiff
path: root/src/graph
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2017-11-03 14:48:14 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitd0f7099e83d1014763ac840d0b8d86c9124dafe5 (patch)
treee23bd272b78bc0df3fca8e98c2eef8f5c8e02e62 /src/graph
parent388d3ec5289d5aa7415d6599137a74c4e5eaeeaf (diff)
downloadComputeLibrary-d0f7099e83d1014763ac840d0b8d86c9124dafe5.tar.gz
COMPMID-556 - Fix LOG_GRAPH_INFO Message in CLSimpleOperations
Change-Id: Iab5c55fed0c06e6ad305ff8429432b2cd880676b Reviewed-on: http://mpd-gerrit.cambridge.arm.com/94403 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/graph')
-rw-r--r--src/graph/operations/CLSimpleOperations.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/graph/operations/CLSimpleOperations.cpp b/src/graph/operations/CLSimpleOperations.cpp
index a42fada6f3..4ec3a22f37 100644
--- a/src/graph/operations/CLSimpleOperations.cpp
+++ b/src/graph/operations/CLSimpleOperations.cpp
@@ -181,7 +181,7 @@ REGISTER_SIMPLE_OPERATION(CLFlattenLayerOperation, OPENCL, OperationType::Flatte
flatten->configure(in, out);
// Log info
- ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEFlattenLayer"
+ ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLFlattenLayer"
<< " Data Type: " << in->info()->data_type()
<< " Input shape: " << in->info()->tensor_shape()
<< " Output shape: " << out->info()->tensor_shape()
@@ -237,7 +237,7 @@ REGISTER_SIMPLE_OPERATION(CLFullyConnectedLayer, OPENCL, OperationType::FullyCon
fc->configure(in, weights, biases, out);
// Log info
- ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEFullyConnectedLayer"
+ ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLFullyConnectedLayer"
<< " Data Type: " << in->info()->data_type()
<< " Input shape: " << in->info()->tensor_shape()
<< " Weights shape: " << weights->info()->tensor_shape()
@@ -351,7 +351,7 @@ REGISTER_SIMPLE_OPERATION(CLQuantizationLayerOperation, OPENCL, OperationType::Q
quantization->configure(in, out);
// Log info
- ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEQuantizationLayer"
+ ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLQuantizationLayer"
<< " Data Type: " << in->info()->data_type()
<< " Input shape: " << in->info()->tensor_shape()
<< " Output shape: " << out->info()->tensor_shape()
@@ -377,7 +377,7 @@ REGISTER_SIMPLE_OPERATION(CLReshapeLayerOperation, OPENCL, OperationType::Reshap
reshape->configure(in, out);
// Log info
- ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEReshapeLayer"
+ ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLReshapeLayer"
<< " Data Type: " << in->info()->data_type()
<< " Input shape: " << in->info()->tensor_shape()
<< " Output shape: " << out->info()->tensor_shape()