aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorUsama Arif <usama.arif@arm.com>2019-05-14 10:22:36 +0100
committerUsama Arif <usama.arif@arm.com>2019-05-15 17:09:25 +0000
commit52c54f61b97bcedab309bfa761e193939e12e739 (patch)
treee99186abb3c6a69ef26b17e8fb57817ee56efe53 /utils
parenteb312ef6c20e8548c43eb9d4a3edf7265bc6777b (diff)
downloadComputeLibrary-52c54f61b97bcedab309bfa761e193939e12e739.tar.gz
COMPMID-2270: Implement POW operator for CL
Change-Id: Id14ecdc62439d90eb247bb75990d6593637cb42e Signed-off-by: Usama Arif <usama.arif@arm.com> Reviewed-on: https://review.mlplatform.org/c/1129 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index 62edea344a..2f9f8cba68 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -1394,6 +1394,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ArithmeticOperation
case ArithmeticOperation::SQUARED_DIFF:
os << "SQUARED_DIFF";
break;
+ case ArithmeticOperation::POWER:
+ os << "POWER";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}