aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/ewise_binary.cc
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/ops/ewise_binary.cc')
-rw-r--r--reference_model/src/ops/ewise_binary.cc16
1 files changed, 15 insertions, 1 deletions
diff --git a/reference_model/src/ops/ewise_binary.cc b/reference_model/src/ops/ewise_binary.cc
index e4c0ee0..7d0c434 100644
--- a/reference_model/src/ops/ewise_binary.cc
+++ b/reference_model/src/ops/ewise_binary.cc
@@ -192,6 +192,12 @@ int OpArithmeticRightShift<Rank, Dtype>::register_fcn()
}
template <int Rank, DType Dtype>
+OpArithmeticRightShift<Rank, Dtype>::~OpArithmeticRightShift()
+{
+ if (attribute) delete attribute;
+}
+
+template <int Rank, DType Dtype>
int OpBitwiseAnd<Rank, Dtype>::register_fcn()
{
switch (Dtype)
@@ -455,6 +461,12 @@ int OpMul<Rank, InDtype, OutDtype>::register_fcn()
return 0;
}
+template <int Rank, DType InDtype, DType OutDtype>
+OpMul<Rank, InDtype, OutDtype>::~OpMul()
+{
+ if (attribute) delete attribute;
+}
+
template <int Rank, DType Dtype>
int OpPow<Rank, Dtype>::register_fcn()
{
@@ -512,7 +524,9 @@ OpTable<Rank, InDtype>::OpTable(SubgraphTraverser* sgt_,
template <int Rank, DType InDtype>
OpTable<Rank, InDtype>::~OpTable()
-{}
+{
+ if (attribute) delete attribute;
+}
template <int Rank, DType InDtype>
int OpTable<Rank, InDtype>::checkTensorAttributes()