aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/ewise_ternary.cc
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2023-05-23 20:59:32 +0000
committerDominic Symes <dominic.symes@arm.com>2023-06-15 18:25:54 +0000
commit135c95544fda260e8ce622cff7835b886a97663f (patch)
tree5d46f8f48978112abff037309a827b5844ee80de /reference_model/src/ops/ewise_ternary.cc
parentcb7201e173961760c042cade591afe763c949c8f (diff)
downloadreference_model-135c95544fda260e8ce622cff7835b886a97663f.tar.gz
Add ERROR_IF to incorrect broadcast shapes
Signed-off-by: Jerry Ge <jerry.ge@arm.com> Change-Id: I7460ad9eed3ed5c7cec6e855a0303753ed28eb1c
Diffstat (limited to 'reference_model/src/ops/ewise_ternary.cc')
-rw-r--r--reference_model/src/ops/ewise_ternary.cc26
1 files changed, 24 insertions, 2 deletions
diff --git a/reference_model/src/ops/ewise_ternary.cc b/reference_model/src/ops/ewise_ternary.cc
index 16554b5..fd2510f 100644
--- a/reference_model/src/ops/ewise_ternary.cc
+++ b/reference_model/src/ops/ewise_ternary.cc
@@ -66,13 +66,14 @@ int OpSelectBase<Rank, Dtype>::eval()
}
template <int Rank, TOSA_REF_TYPE Dtype>
-int OpSelect<Rank, Dtype>::broadcast()
+int OpSelect<Rank, Dtype>::broadcast(std::vector<int>& calculated_shape)
{
const std::vector<int>& cond_shape = this->cond->getShape();
const std::vector<int>& then_shape = this->then_val->getShape();
const std::vector<int>& else_shape = this->else_val->getShape();
const std::vector<int>& output_shape = this->out->getShape();
+ // calculates the multipliers for Eigen
for (int i = 0; i < Rank; i++)
{
this->bcast_cond[i] = (cond_shape[i] != output_shape[i] && cond_shape[i] == 1) ? output_shape[i] : 1;
@@ -80,13 +81,34 @@ int OpSelect<Rank, Dtype>::broadcast()
this->bcast_else[i] = (else_shape[i] != output_shape[i] && else_shape[i] == 1) ? output_shape[i] : 1;
}
+ // calculates the broadcasted output shape
+ calculated_shape = cond_shape;
+ for (size_t i = 0; i < calculated_shape.size(); i++) {
+ if (calculated_shape[i] == 1) {
+ calculated_shape[i] = then_shape[i];
+ } else {
+ ERROR_IF(then_shape[i] != 1 && then_shape[i] != calculated_shape[i], "Broadcast_shape failure, input shapes are not compatible");
+ }
+
+ if (calculated_shape[i] == 1) {
+ calculated_shape[i] = else_shape[i];
+ } else {
+ ERROR_IF(else_shape[i] != 1 && else_shape[i] != calculated_shape[i], "Broadcast_shape failure, input shapes are not compatible");
+ }
+ }
+
return 0;
}
template <int Rank, TOSA_REF_TYPE Dtype>
int OpSelect<Rank, Dtype>::eval()
{
- this->broadcast();
+ std::vector<int> calculated_shape;
+ this->broadcast(calculated_shape);
+
+ auto result_shape = this->out->getShape();
+ ERROR_IF(calculated_shape != result_shape, "Broadcast_shape failure, calculated_shape and result_shape don't match");
+
this->out->getTensor() = this->cond->getTensor()
.broadcast(this->bcast_cond)
.select(this->then_val->getTensor().broadcast(this->bcast_then),