aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/tensor_ops.h
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-08-31 16:14:03 -0700
committerEric Kunze <eric.kunze@arm.com>2021-09-15 23:58:06 +0000
commit93a1628bc3dd48d9ba099de503b586a561b4751f (patch)
treeadab77805c3d78cf3b30b00684e8a76316e11477 /reference_model/src/ops/tensor_ops.h
parente3d6a8ffe0fffaf9d29167b03509b85a2f4d8308 (diff)
downloadreference_model-93a1628bc3dd48d9ba099de503b586a561b4751f.tar.gz
Rename attribute: Pool2d, Conv2d, TransposeConv2d -> Pool, Conv, TransposeConv
Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: I466dd1dcf5230e8e07df202ba88515e775e04a1e
Diffstat (limited to 'reference_model/src/ops/tensor_ops.h')
-rw-r--r--reference_model/src/ops/tensor_ops.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/reference_model/src/ops/tensor_ops.h b/reference_model/src/ops/tensor_ops.h
index 6ffc27d..eea351d 100644
--- a/reference_model/src/ops/tensor_ops.h
+++ b/reference_model/src/ops/tensor_ops.h
@@ -68,7 +68,7 @@ public:
protected:
TosaReference::TensorTemplate<TIn>* in;
TosaReference::TensorTemplate<TOut>* out;
- tosa::TosaPool2dAttribute* attribute;
+ tosa::TosaPoolAttribute* attribute;
tosa::TosaUnaryQuantInfo* qinfo;
protected:
@@ -104,7 +104,7 @@ protected:
TosaReference::TensorTemplate<TWeight>* weight;
TosaReference::TensorTemplate<TBias>* bias;
TosaReference::TensorTemplate<TAcc>* output;
- tosa::TosaConv2dAttribute* attribute;
+ tosa::TosaConvAttribute* attribute;
tosa::TosaConvQuantInfo* qinfo;
};
@@ -136,7 +136,7 @@ protected:
TosaReference::TensorTemplate<TWeight>* weight;
TosaReference::TensorTemplate<TBias>* bias;
TosaReference::TensorTemplate<TAcc>* output;
- tosa::TosaConv2dAttribute* attribute;
+ tosa::TosaConvAttribute* attribute;
tosa::TosaConvQuantInfo* qinfo;
};
@@ -219,7 +219,7 @@ public:
protected:
TosaReference::TensorTemplate<TIn>* in;
TosaReference::TensorTemplate<TOut>* out;
- tosa::TosaPool2dAttribute* attribute;
+ tosa::TosaPoolAttribute* attribute;
};
template <DType InDtype, DType WeightDtype>
@@ -250,7 +250,7 @@ protected:
TosaReference::TensorTemplate<TWeight>* weight;
TosaReference::TensorTemplate<TBias>* bias;
TosaReference::TensorTemplate<TAcc>* output;
- TosaTransposeConv2dAttribute* attribute;
+ TosaTransposeConvAttribute* attribute;
TosaConvQuantInfo* qinfo;
};