1 // 2 // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include <iostream> 9 #include <vector> 10 11 namespace armnnUtils 12 { 13 14 std::string ConstructTensorShapeString(const std::vector<int>& shape); 15 16 std::string ConstructIntsAttribute(const std::string& name, const std::vector<int>& value); 17 18 } // namespace armnnUtils