• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <armnn/backends/WorkloadData.hpp>
9 #include <armnn/Tensor.hpp>
10 
11 namespace armnn
12 {
13 void Concatenate(const ConcatQueueDescriptor &data,
14                  std::vector<ITensorHandle*> inputs,
15                  std::vector<ITensorHandle*> outputs);
16 } //namespace armnn
17