Home
last modified time | relevance | path

Searched refs:cumprod (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Cumprod.pbtxt21 If `True`, perform exclusive cumprod.
32 By default, this op performs an inclusive cumprod, which means that the first
36 tf.cumprod([a, b, c]) # => [a, a * b, a * b * c]
39 By setting the `exclusive` kwarg to `True`, an exclusive cumprod is
43 tf.cumprod([a, b, c], exclusive=True) # => [1, a, a * b]
46 By setting the `reverse` kwarg to `True`, the cumprod is performed in the
50 tf.cumprod([a, b, c], reverse=True) # => [a * b * c, b * c, c]
58 tf.cumprod([a, b, c], exclusive=True, reverse=True) # => [b * c, c, 1]
/external/tensorflow/tensorflow/python/kernel_tests/
Dscan_ops_test.py59 elif func == np.cumprod:
186 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse)
188 tf_out = math_ops.cumprod(x, axis, exclusive, reverse).eval()
209 tf_out = math_ops.cumprod(x, axis).eval()
242 math_ops.cumprod(input_tensor, -3).eval()
246 math_ops.cumprod(input_tensor, 2).eval()
250 math_ops.cumprod(input_tensor, [0]).eval()
256 result = math_ops.cumprod(t, axis, exclusive, reverse)
/external/tensorflow/tensorflow/compiler/tests/
Dscan_ops_test.py59 elif func == np.cumprod:
158 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse)
161 prod = math_ops.cumprod(p, axis, exclusive, reverse)
184 math_ops.cumprod(x, axis).eval(feed_dict={p: x})
217 math_ops.cumprod(input_tensor, -3).eval()
221 math_ops.cumprod(input_tensor, 2).eval()
225 math_ops.cumprod(input_tensor, [0]).eval()
/external/eigen/unsupported/test/
Dcxx11_tensor_scan.cpp39 result = tensor.cumprod(0, Exclusive); in test_1d_scan()
/external/tensorflow/tensorflow/docs_src/api_guides/python/
Dmath_ops.md152 * @{tf.cumprod}
/external/tensorflow/tensorflow/python/ops/
Dmath_grad.py152 left = math_ops.cumprod(reshaped, axis=0, exclusive=True)
153 right = math_ops.cumprod(reshaped, axis=0, exclusive=True, reverse=True)
1273 prod = math_ops.cumprod(x, axis, exclusive=exclusive, reverse=reverse)
Dmath_ops.py2428 def cumprod(x, axis=0, exclusive=False, reverse=False, name=None): function
2475 return gen_math_ops.cumprod(
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
Dattention_wrapper.py682 attention = p_choose_i*math_ops.cumprod(
/external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/
Dattention_wrapper_test.py422 cumprod_output = math_ops.cumprod(
/external/tensorflow/tensorflow/python/keras/_impl/keras/
Dbackend.py1558 def cumprod(x, axis=0): function
1568 return math_ops.cumprod(x, axis=axis)
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h512 cumprod(const Index& axis, bool exclusive = false) const {
DREADME.md1204 ### <Operation> cumprod(const Index& axis)
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.pbtxt888 name: "cumprod"