From: A. Unique TensorFlower Date: Thu, 12 Apr 2018 03:08:30 +0000 (-0700) Subject: Fix description of DynamicUpdateSlice. X-Git-Tag: upstream/v1.9.0_rc1~329^2^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac9be81b06e9bf93d8ba5f37983c3dd1163a190e;p=platform%2Fupstream%2Ftensorflow.git Fix description of DynamicUpdateSlice. PiperOrigin-RevId: 192550101 --- diff --git a/tensorflow/docs_src/performance/xla/operation_semantics.md b/tensorflow/docs_src/performance/xla/operation_semantics.md index 217ab59..3963d5f 100644 --- a/tensorflow/docs_src/performance/xla/operation_semantics.md +++ b/tensorflow/docs_src/performance/xla/operation_semantics.md @@ -854,12 +854,13 @@ calculation of 'start_indices') is currently implementation-defined. | `operand` | `ComputationDataHandle` | N dimensional array of type T | | `update` | `ComputationDataHandle` | N dimensional array of type T | : : : containing the slice update. : -: : : Each dimension of update shape : +: : : Each dimension of update shape : : : : must be strictly greater than : : : : zero, and start + update must be : -: : : less than operand size for each : -: : : dimension to avoid generating : -: : : out-of-bounds update indices. : +: : : less than or equal to the operand: +: : : size for each dimension to avoid : +: : : generating out-of-bounds update : +: : : indices. : | `start_indices` | `ComputationDataHandle` | Rank 1 array of N integers | : : : containing the starting indices : : : : of the slice for each dimension. :