X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=documentation%2Fclassarm__compute_1_1test_1_1_n_e_synthetize_function_with_zero_constant_border.xhtml;h=d490fd2cf084c1778f09611fb2025fdd50b92fcc;hb=HEAD;hp=2d453e3a75dcbe28de7c2725168bd57ab71b877e;hpb=8140e1e155d3430992fa46e04ef8938ff09ffd2d;p=platform%2Fupstream%2Farmcl.git diff --git a/documentation/classarm__compute_1_1test_1_1_n_e_synthetize_function_with_zero_constant_border.xhtml b/documentation/classarm__compute_1_1test_1_1_n_e_synthetize_function_with_zero_constant_border.xhtml index 2d453e3..d490fd2 100644 --- a/documentation/classarm__compute_1_1test_1_1_n_e_synthetize_function_with_zero_constant_border.xhtml +++ b/documentation/classarm__compute_1_1test_1_1_n_e_synthetize_function_with_zero_constant_border.xhtml @@ -40,7 +40,7 @@
Compute Library -  17.12 +  18.05
@@ -122,6 +122,9 @@ $(document).ready(function(){initNavTree('classarm__compute_1_1test_1_1_n_e_synt
+

As above but this also setups a Zero border on the input tensor of the specified bordersize. + More...

+

#include <Helper.h>

Collaboration diagram for NESynthetizeFunctionWithZeroConstantBorder< K, bordersize >:
@@ -134,6 +137,7 @@ Collaboration diagram for NESynthetizeFunctionWithZeroConstantBorder< K, bord Public Member Functions template<typename T , typename... Args> void configure (T first, Args &&...args) + Configure the kernel. More...
  - Public Member Functions inherited from INESimpleFunction  INESimpleFunction () @@ -146,13 +150,17 @@ Public Member Functions virtual ~IFunction ()=default  Destructor. More...
  +virtual void prepare () + Prepare the function for executing. More...

Detailed Description

template<typename K, int bordersize>
class arm_compute::test::NESynthetizeFunctionWithZeroConstantBorder< K, bordersize >

+

As above but this also setups a Zero border on the input tensor of the specified bordersize.

-

Definition at line 69 of file Helper.h.

+

Definition at line 73 of file Helper.h.

Member Function Documentation

@@ -186,11 +194,19 @@ class arm_compute::test::NESynthetizeFunctionWithZeroConstantBorder< K, borde
-

Definition at line 73 of file Helper.h.

+

Configure the kernel.

+
Parameters
+ + + +
[in]firstFirst configuration argument.
[in]argsRest of the configuration arguments.
+
+
+ +

Definition at line 82 of file Helper.h.

-

References caffe_data_extractor::args, and arm_compute::CONSTANT.

-
74  {
75  auto k = arm_compute::support::cpp14::make_unique<K>();
76  k->configure(first, std::forward<Args>(args)...);
77  _kernel = std::move(k);
78  _border_handler.configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue(0));
79  }
Pixels outside the image are assumed to have a constant value.
- +

References arm_compute::CONSTANT.

+
83  {
84  auto k = arm_compute::support::cpp14::make_unique<K>();
85  k->configure(first, std::forward<Args>(args)...);
86  _kernel = std::move(k);
87  _border_handler.configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue(0));
88  }
Pixels outside the image are assumed to have a constant value.
@@ -203,7 +219,7 @@ class arm_compute::test::NESynthetizeFunctionWithZeroConstantBorder< K, borde