COMPMID-752 Creating an example for QASYMM8 MobileNet

Change-Id: Ic76b3b6adaff8c84ba4d2ca5283d9291c69344f0
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/114466
Tested-by: Jenkins <bsgcomp@arm.com>
Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
diff --git a/src/graph/nodes/BranchLayer.cpp b/src/graph/nodes/BranchLayer.cpp
index eea0540..6352bfc 100644
--- a/src/graph/nodes/BranchLayer.cpp
+++ b/src/graph/nodes/BranchLayer.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
  *
  * SPDX-License-Identifier: MIT
  *
@@ -53,7 +53,7 @@
         arm_compute::auto_init_if_empty(*info,
                                         sub_tensor_info->tensor_shape(),
                                         sub_tensor_info->num_channels(),
-                                        sub_tensor_info->data_type(), sub_tensor_info->fixed_point_position());
+                                        sub_tensor_info->data_type(), sub_tensor_info->fixed_point_position(), sub_tensor_info->quantization_info());
         info->set_valid_region(sub_tensor_info->valid_region());
     }
     else
@@ -170,7 +170,8 @@
                                     out_info.tensor_shape(),
                                     out_info.num_channels(),
                                     out_info.data_type(),
-                                    out_info.fixed_point_position());
+                                    out_info.fixed_point_position(),
+                                    out_info.quantization_info());
 
     return std::move(func);
 }
\ No newline at end of file