aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTestUtils/CommonTestUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnTestUtils/CommonTestUtils.cpp')
-rw-r--r--src/armnnTestUtils/CommonTestUtils.cpp33
1 files changed, 30 insertions, 3 deletions
diff --git a/src/armnnTestUtils/CommonTestUtils.cpp b/src/armnnTestUtils/CommonTestUtils.cpp
index c85330577d..472716c97c 100644
--- a/src/armnnTestUtils/CommonTestUtils.cpp
+++ b/src/armnnTestUtils/CommonTestUtils.cpp
@@ -9,16 +9,43 @@
using namespace armnn;
-SubgraphView::InputSlots CreateInputsFrom(const std::vector<Layer*>& layers)
+SubgraphView::InputSlots CreateInputsFrom(Layer* layer,
+ std::vector<unsigned int> ignoreSlots)
{
SubgraphView::InputSlots result;
- for (auto&& layer : layers)
+ for (auto&& it = layer->BeginInputSlots(); it != layer->EndInputSlots(); ++it)
{
- for (auto&& it = layer->BeginInputSlots(); it != layer->EndInputSlots(); ++it)
+ if (std::find(ignoreSlots.begin(), ignoreSlots.end(), it->GetSlotIndex()) != ignoreSlots.end())
+ {
+ continue;
+ }
+ else
{
result.push_back(&(*it));
}
}
+ return result;
+}
+
+// ignoreSlots assumes you want to ignore the same slots all on layers within the vector
+SubgraphView::InputSlots CreateInputsFrom(const std::vector<Layer*>& layers,
+ std::vector<unsigned int> ignoreSlots)
+{
+ SubgraphView::InputSlots result;
+ for (auto&& layer: layers)
+ {
+ for (auto&& it = layer->BeginInputSlots(); it != layer->EndInputSlots(); ++it)
+ {
+ if (std::find(ignoreSlots.begin(), ignoreSlots.end(), it->GetSlotIndex()) != ignoreSlots.end())
+ {
+ continue;
+ }
+ else
+ {
+ result.push_back(&(*it));
+ }
+ }
+ }
return result;
}