From d0f7099e83d1014763ac840d0b8d86c9124dafe5 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Fri, 3 Nov 2017 14:48:14 +0000 Subject: COMPMID-556 - Fix LOG_GRAPH_INFO Message in CLSimpleOperations Change-Id: Iab5c55fed0c06e6ad305ff8429432b2cd880676b Reviewed-on: http://mpd-gerrit.cambridge.arm.com/94403 Tested-by: Kaizen Reviewed-by: Georgios Pinitas --- src/graph/operations/CLSimpleOperations.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/graph') 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() -- cgit v1.2.1