From 549b9600a6eaf0727fa084465a75f173edf8f381 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 24 May 2022 11:32:07 +0100 Subject: Update 22.05 Doxygen Docs after updates to main Readme Signed-off-by: Nikhil Raj Change-Id: I56711772406a41ff81fa136a5fb6c59c9b9cf504 --- 22.05/_conv3d_impl_8hpp_source.xhtml | 121 +++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 22.05/_conv3d_impl_8hpp_source.xhtml (limited to '22.05/_conv3d_impl_8hpp_source.xhtml') diff --git a/22.05/_conv3d_impl_8hpp_source.xhtml b/22.05/_conv3d_impl_8hpp_source.xhtml new file mode 100644 index 0000000000..30ffa41522 --- /dev/null +++ b/22.05/_conv3d_impl_8hpp_source.xhtml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + +ArmNN: src/backends/reference/workloads/Conv3dImpl.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Conv3dImpl.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "BaseIterator.hpp"
9 #include "Decoders.hpp"
10 #include "Encoders.hpp"
11 
12 #include <armnn/Tensor.hpp>
13 
15 
16 namespace armnn
17 {
18 
19 void Convolve3d(const TensorShape& rInputShape,
20  Decoder<float>& rInputDecoder,
21  const TensorShape& rOutputShape,
22  Encoder<float>& rOutputEncoder,
23  const TensorShape& rFilterShape,
24  Decoder<float>& rFilterDecoder,
25  bool biasEnabled,
26  Decoder<float>* pBiasDecoder,
27  DataLayout dataLayout,
28  unsigned int paddingTop,
29  unsigned int paddingLeft,
30  unsigned int paddingFront,
31  unsigned int xStride,
32  unsigned int yStride,
33  unsigned int zStride,
34  unsigned int xDilation,
35  unsigned int yDilation,
36  unsigned int zDilation);
37 
38 } //namespace armnn
+
DataLayout
Definition: Types.hpp:62
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+ + + +
void Convolve3d(const TensorShape &rInputShape, Decoder< float > &rInputDecoder, const TensorShape &rOutputShape, Encoder< float > &rOutputEncoder, const TensorShape &rFilterShape, Decoder< float > &rFilterDecoder, bool biasEnabled, Decoder< float > *pBiasDecoder, DataLayout dataLayout, unsigned int paddingTop, unsigned int paddingLeft, unsigned int paddingFront, unsigned int xStride, unsigned int yStride, unsigned int zStride, unsigned int xDilation, unsigned int yDilation, unsigned int zDilation)
Definition: Conv3dImpl.cpp:11
+
+
+ + + + -- cgit v1.2.1