• 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/Descriptors.hpp>
9 #include <armnn/Tensor.hpp>
10 
11 namespace armnn
12 {
13 
14 void StridedSlice(const TensorInfo& inputInfo,
15                   const StridedSliceDescriptor& params,
16                   const void* inputData,
17                   void* outputData,
18                   unsigned int dataTypeSize);
19 
20 } // namespace armnn
21