blob: 0e522d5ad53854836e2585d6447790046948b906 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#pragma once
7
8#include "RefWorkloadUtils.hpp"
9
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +000010#include <backendsCommon/WorkloadData.hpp>
telsoa014fcda012018-03-09 14:13:49 +000011#include <armnn/Tensor.hpp>
12
13#include <boost/assert.hpp>
14
15namespace armnn
16{
17
18template <typename DataType>
19void Splitter(const SplitterQueueDescriptor& data)
20{
21 const TensorInfo& inputInfo0 = GetTensorInfo(data.m_Inputs[0]);
22
23 for (unsigned int index = 0; index < inputInfo0.GetNumElements(); ++index)
24 {
surmeh013537c2c2018-05-18 16:31:43 +010025 unsigned int indices[MaxNumOfTensorDimensions] = { 0 };
telsoa014fcda012018-03-09 14:13:49 +000026
27 unsigned int indexRemainder = index;
28 unsigned int dimensionStride = inputInfo0.GetNumElements();
29
30 for (unsigned int i = 0; i<inputInfo0.GetNumDimensions(); i++)
31 {
32 dimensionStride /= inputInfo0.GetShape()[i];
telsoa01c577f2c2018-08-31 09:22:23 +010033 indices[i] = indexRemainder / dimensionStride; // Use integer division to round down.
telsoa014fcda012018-03-09 14:13:49 +000034 indexRemainder -= indices[i] * dimensionStride;
35 }
36
37 for (unsigned int viewIdx = 0; viewIdx < data.m_ViewOrigins.size(); ++viewIdx)
38 {
39 SplitterQueueDescriptor::ViewOrigin const& view = data.m_ViewOrigins[viewIdx];
40
telsoa01c577f2c2018-08-31 09:22:23 +010041 //Split view extents are defined by the size of (the corresponding) input tensor.
telsoa014fcda012018-03-09 14:13:49 +000042 const TensorInfo& outputInfo = GetTensorInfo(data.m_Outputs[viewIdx]);
surmeh01bceff2f2018-03-29 16:29:27 +010043 BOOST_ASSERT(outputInfo.GetNumDimensions() == inputInfo0.GetNumDimensions());
telsoa014fcda012018-03-09 14:13:49 +000044
telsoa01c577f2c2018-08-31 09:22:23 +010045 // Check all dimensions to see if this element is inside the given input view.
telsoa014fcda012018-03-09 14:13:49 +000046 bool insideView = true;
47 for (unsigned int i = 0; i<outputInfo.GetNumDimensions(); i++)
48 {
49 if (indices[i] < view.m_Origin[i])
50 {
51 insideView = false;
52 }
53 if (indices[i] >= view.m_Origin[i] + outputInfo.GetShape()[i])
54 {
55 insideView = false;
56 }
57 }
58
59 if (insideView)
60 {
61 unsigned int outIndex = 0;
62 unsigned int dimensionStride = 1;
63
64 for (unsigned int i = outputInfo.GetNumDimensions(); i-- > 0;)
65 {
66 outIndex += dimensionStride * (indices[i] - view.m_Origin[i]);
67 dimensionStride *= outputInfo.GetShape()[i];
68 }
69
telsoa01c577f2c2018-08-31 09:22:23 +010070 //We are within the view, to copy input data to the output corresponding to this view.
telsoa014fcda012018-03-09 14:13:49 +000071 DataType* outputData = GetOutputTensorData<DataType>(viewIdx, data);
72 BOOST_ASSERT(outputData);
73
74 const DataType* inputData = GetInputTensorData<DataType>(0, data);
75 BOOST_ASSERT(inputData);
76
77 outputData[outIndex] = inputData[index];
78 }
79 }
80 }
81}
82
83} //namespace armnn