X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=documentation%2Fclassarm__compute_1_1_access_window_vertical.xhtml;h=3b8efd4f9ddec68490946d7b233a40cba0f93cbf;hb=a437638028c216a03572593b9d4e3532df2a308d;hp=42e76ca97fd08089fb184b89f075c83ad5aa98f8;hpb=871448ee8eff790c4ccc3250008dd71170cc78b2;p=platform%2Fupstream%2Farmcl.git diff --git a/documentation/classarm__compute_1_1_access_window_vertical.xhtml b/documentation/classarm__compute_1_1_access_window_vertical.xhtml index 42e76ca..3b8efd4 100644 --- a/documentation/classarm__compute_1_1_access_window_vertical.xhtml +++ b/documentation/classarm__compute_1_1_access_window_vertical.xhtml @@ -40,7 +40,7 @@
ARM Compute Library -  17.03.1 +  17.04
@@ -154,11 +154,14 @@ Public Member Functions    ~AccessWindowRectangle ()=default   -void set_valid_region (const Window &window, ValidRegion input_valid_region) - Set the valid region based on access pattern and valid region of the inputs. More...
-  -void set_valid_region (const Window &window, ValidRegion input_valid_region, bool border_undefined, BorderSize border_size) override -  +void set_valid_region (const Window &window, const ValidRegion &input_valid_region, bool border_undefined=false, const BorderSize &border_size=BorderSize(0)) + Set the valid region based on access pattern, valid region of the inputs and border mode. More...
+  +ValidRegion compute_valid_region (const Window &window, const ValidRegion &input_valid_region) const + Compute the valid region based on access pattern, valid region of the inputs and border mode. More...
+  +ValidRegion compute_valid_region (const Window &window, ValidRegion input_valid_region, bool border_undefined, BorderSize border_size) const override +  bool update_window_if_needed (Window &window) const override  Shrink the window if padding is not large enough. More...
  @@ -172,7 +175,7 @@ Public Member Functions

Detailed Description

Implementation of a column access pattern.

-

Definition at line 174 of file IAccessWindow.h.

+

Definition at line 184 of file IAccessWindow.h.

Constructor & Destructor Documentation

@@ -230,11 +233,11 @@ Public Member Functions -

Definition at line 186 of file IAccessWindow.h.

+

Definition at line 196 of file IAccessWindow.h.

References ARM_COMPUTE_ERROR_ON.

-
187  : AccessWindowRectangle(info, 0, y, 1, height, 1.f, scale_y)
188  {
189  ARM_COMPUTE_ERROR_ON(height < 0);
190  ARM_COMPUTE_ERROR_ON(scale_y < 0);
191  }
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
Definition: Error.h:100
-
AccessWindowRectangle(TensorInfo *info, int x, int y, int width, int height)
Constructor for a rectangular access pattern.
+
197  : AccessWindowRectangle(info, 0, y, 1, height, 1.f, scale_y)
198  {
199  ARM_COMPUTE_ERROR_ON(height < 0);
200  ARM_COMPUTE_ERROR_ON(scale_y < 0);
201  }
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
Definition: Error.h:100
+
AccessWindowRectangle(TensorInfo *info, int x, int y, int width, int height)
Constructor for a rectangular access pattern.
@@ -247,7 +250,7 @@ Public Member Functions