blob: 212cf5965a7fd9323197aed5252628f75b0f0fd1 [file] [log] [blame]
Narumol Prangnawaratf10b15a2021-09-17 21:08:57 +01001//
2// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
Narumol Prangnawaratfe6aa2f2021-09-23 16:11:17 +01008#include <iostream>
9#include <vector>
10
Narumol Prangnawaratf10b15a2021-09-17 21:08:57 +010011namespace armnnUtils
12{
13
Narumol Prangnawaratfe6aa2f2021-09-23 16:11:17 +010014std::string ConstructTensorShapeString(const std::vector<int>& shape);
15
16std::string ConstructIntsAttribute(const std::string& name, const std::vector<int>& value);
Narumol Prangnawaratf10b15a2021-09-17 21:08:57 +010017
18} // namespace armnnUtils