aboutsummaryrefslogtreecommitdiff
path: root/1.3/HalPolicy.cpp
diff options
context:
space:
mode:
Diffstat (limited to '1.3/HalPolicy.cpp')
-rw-r--r--1.3/HalPolicy.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/1.3/HalPolicy.cpp b/1.3/HalPolicy.cpp
index 79df1c7f..37deec3d 100644
--- a/1.3/HalPolicy.cpp
+++ b/1.3/HalPolicy.cpp
@@ -49,6 +49,8 @@ bool HalPolicy::ConvertOperation(const Operation& operation, const Model& model,
return ConvertElu(operation, model, data);
case V1_3::OperationType::EQUAL:
return ConvertComparison(operation, model, data, ComparisonOperation::Equal);
+ case V1_3::OperationType::EXP:
+ return ConvertElementwiseUnary(operation, model, data, UnaryOperation::Exp);
case V1_3::OperationType::EXPAND_DIMS:
return ConvertExpandDims(operation, model, data);
case V1_3::OperationType::FILL: