1 // 2 // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include <armnn/Types.hpp> 9 10 namespace armnnUtils 11 { 12 13 template<typename T> 14 bool CompatibleTypes(armnn::DataType); 15 16 } //namespace armnnUtils 17