IVGCVSW-7400 Add support for Pow

Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com>
Change-Id: Ida6d93d203d2430befbbd2deaa02108078de73f8
diff --git a/1.2/HalPolicy.cpp b/1.2/HalPolicy.cpp
index bfc467c..4e53c74 100644
--- a/1.2/HalPolicy.cpp
+++ b/1.2/HalPolicy.cpp
@@ -133,6 +133,8 @@
             return ConvertPad(operation, model, data);
         case V1_2::OperationType::PAD_V2:
             return ConvertPadV2(operation, model, data);
+        case V1_2::OperationType::POW:
+            return ConvertElementwiseBinary(operation, model, data, BinaryOperation::Power);
         case V1_2::OperationType::PRELU:
             return ConvertPrelu(operation, model, data);
         case V1_2::OperationType::QUANTIZE:
diff --git a/1.3/HalPolicy.cpp b/1.3/HalPolicy.cpp
index 16b325b..aaf0813 100644
--- a/1.3/HalPolicy.cpp
+++ b/1.3/HalPolicy.cpp
@@ -117,6 +117,8 @@
             return ConvertPad(operation, model, data);
         case V1_3::OperationType::PAD_V2:
             return ConvertPadV2(operation, model, data);
+        case V1_3::OperationType::POW:
+            return ConvertElementwiseBinary(operation, model, data, BinaryOperation::Power);
         case V1_3::OperationType::PRELU:
             return ConvertPrelu(operation, model, data);
         case V1_3::OperationType::QUANTIZE: