aboutsummaryrefslogtreecommitdiff
path: root/include/armnnUtils/TContainer.hpp
blob: a55f9df488504b7a2c12cf5943a6225ff94f475e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/TypesUtils.hpp>

#include <mapbox/variant.hpp>

namespace armnnUtils
{

// Standard definition of TContainer used by ArmNN, use this definition or add alternative definitions here instead of
// defining your own.
    using TContainer =
    mapbox::util::variant<std::vector<float>, std::vector<int>, std::vector<unsigned char>, std::vector<int8_t>>;

} // namespace armnnUtils