aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/scatter_gather.cc
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/ops/scatter_gather.cc')
-rw-r--r--reference_model/src/ops/scatter_gather.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/reference_model/src/ops/scatter_gather.cc b/reference_model/src/ops/scatter_gather.cc
index 80b6c58..65d61b6 100644
--- a/reference_model/src/ops/scatter_gather.cc
+++ b/reference_model/src/ops/scatter_gather.cc
@@ -21,9 +21,7 @@ using namespace Eigen;
using namespace tosa;
template <TOSA_REF_TYPE Dtype>
-OpGather<Dtype>::OpGather(SubgraphTraverser* sgt_,
- TosaAttributeBase* attribute_,
- uint64_t id_)
+OpGather<Dtype>::OpGather(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: GraphNode(sgt_, Op_GATHER, id_)
{
setRequiredOperands(2, 1);
@@ -117,9 +115,7 @@ int OpGather<Dtype>::eval()
}
template <TOSA_REF_TYPE Dtype>
-OpScatter<Dtype>::OpScatter(SubgraphTraverser* sgt_,
- TosaAttributeBase* attribute_,
- uint64_t id_)
+OpScatter<Dtype>::OpScatter(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: GraphNode(sgt_, Op_SCATTER, id_)
{
setRequiredOperands(3, 1);