From bd5a9665b101f7d0e5d37f7db8381d3189d34927 Mon Sep 17 00:00:00 2001 From: shashvatshahi1998 Date: Wed, 3 Apr 2019 23:49:40 +0530 Subject: [PATCH] Reduced length of lines --- tensorflow/python/ops/math_ops.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tensorflow/python/ops/math_ops.py b/tensorflow/python/ops/math_ops.py index 69c0846cad9..6086de02978 100644 --- a/tensorflow/python/ops/math_ops.py +++ b/tensorflow/python/ops/math_ops.py @@ -2787,10 +2787,11 @@ def add_n(inputs, name=None): Converts `IndexedSlices` objects into dense tensors prior to adding. - `tf.math.add_n` performs the same operation as `tf.math.accumulate_n` but it waits - for all of its inputs to be ready before beginning to sum.This can consume more - memory when inputs are ready at different times, since the minimum temporary storage - required is proportional to the input size rather than the output size. + `add_n` performs the same operation as `accumulate_n` but it waits + for all of its inputs to be ready before beginning to sum.This can + consume more memory when inputs are ready at different times, since + the minimum temporary storage required is proportional to the input + size rather than the output size. For example: ```python