aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/test/DebugCallbackTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/test/DebugCallbackTest.cpp')
-rw-r--r--src/armnn/test/DebugCallbackTest.cpp98
1 files changed, 98 insertions, 0 deletions
diff --git a/src/armnn/test/DebugCallbackTest.cpp b/src/armnn/test/DebugCallbackTest.cpp
new file mode 100644
index 0000000000..0b1abbf2dc
--- /dev/null
+++ b/src/armnn/test/DebugCallbackTest.cpp
@@ -0,0 +1,98 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#include <armnn/Descriptors.hpp>
+#include <armnn/IRuntime.hpp>
+#include <armnn/INetwork.hpp>
+#include <armnn/Types.hpp>
+#include <Runtime.hpp>
+
+#include <boost/test/unit_test.hpp>
+
+BOOST_AUTO_TEST_SUITE(DebugCallback)
+
+namespace
+{
+
+using namespace armnn;
+
+INetworkPtr CreateSimpleNetwork()
+{
+ INetworkPtr net(INetwork::Create());
+
+ IConnectableLayer* input = net->AddInputLayer(0, "Input");
+
+ ActivationDescriptor descriptor;
+ descriptor.m_Function = ActivationFunction::ReLu;
+ IConnectableLayer* activationLayer = net->AddActivationLayer(descriptor, "Activation:ReLu");
+
+ IConnectableLayer* output = net->AddOutputLayer(0);
+
+ input->GetOutputSlot(0).Connect(activationLayer->GetInputSlot(0));
+ activationLayer->GetOutputSlot(0).Connect(output->GetInputSlot(0));
+
+ input->GetOutputSlot(0).SetTensorInfo(TensorInfo({ 1, 1, 1, 5 }, DataType::Float32));
+ activationLayer->GetOutputSlot(0).SetTensorInfo(TensorInfo({ 1, 1, 1, 5 }, DataType::Float32));
+
+ return net;
+}
+
+BOOST_AUTO_TEST_CASE(RuntimeRegisterDebugCallback)
+{
+ INetworkPtr net = CreateSimpleNetwork();
+
+ IRuntime::CreationOptions options;
+ IRuntimePtr runtime(IRuntime::Create(options));
+
+ // Optimize the network with debug option
+ OptimizerOptions optimizerOptions(false, true);
+ std::vector<BackendId> backends = { "CpuRef" };
+ IOptimizedNetworkPtr optNet = Optimize(*net, backends, runtime->GetDeviceSpec(), optimizerOptions);
+
+ NetworkId netId;
+ BOOST_TEST(runtime->LoadNetwork(netId, std::move(optNet)) == Status::Success);
+
+ // Set up callback function
+ int callCount = 0;
+ std::vector<TensorShape> tensorShapes;
+ std::vector<unsigned int> slotIndexes;
+ auto mockCallback = [&](LayerGuid guid, unsigned int slotIndex, ITensorHandle* tensor)
+ {
+ slotIndexes.push_back(slotIndex);
+ tensorShapes.push_back(tensor->GetShape());
+ callCount++;
+ };
+
+ runtime->RegisterDebugCallback(netId, mockCallback);
+
+ std::vector<float> inputData({-2, -1, 0, 1, 2});
+ std::vector<float> outputData(5);
+
+ InputTensors inputTensors
+ {
+ {0, ConstTensor(runtime->GetInputTensorInfo(netId, 0), inputData.data())}
+ };
+ OutputTensors outputTensors
+ {
+ {0, Tensor(runtime->GetOutputTensorInfo(netId, 0), outputData.data())}
+ };
+
+ runtime->EnqueueWorkload(netId, inputTensors, outputTensors);
+
+ // Check that the callback was called twice
+ BOOST_TEST(callCount == 2);
+
+ // Check that tensor handles passed to callback have correct shapes
+ const std::vector<TensorShape> expectedShapes({TensorShape({1, 1, 1, 5}), TensorShape({1, 1, 1, 5})});
+ BOOST_TEST(tensorShapes == expectedShapes);
+
+ // Check that slot indexes passed to callback are correct
+ const std::vector<unsigned int> expectedSlotIndexes({0, 0});
+ BOOST_TEST(slotIndexes == expectedSlotIndexes);
+}
+
+} // anonymous namespace
+
+BOOST_AUTO_TEST_SUITE_END()