1 // 2 // Copyright © 2017 Arm Ltd. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 #pragma once 6 7 #include <armnn/Tensor.hpp> 8 9 namespace armnn 10 { 11 template <typename T> 12 void Debug(const TensorInfo& inputInfo, 13 const T* inputData, 14 LayerGuid guid, 15 const std::string& layerName, 16 unsigned int slotIndex, 17 bool outputsToFile); 18 19 } //namespace armnn 20