Searched refs:cumprod (Results 1 – 21 of 21) sorted by relevance
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Cumprod.pbtxt | 21 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/compiler/tests/ |
D | scan_ops_test.py | 59 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/tensorflow/tensorflow/python/kernel_tests/ |
D | scan_ops_test.py | 60 elif func == np.cumprod: 205 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse) 207 tf_out = math_ops.cumprod(x, axis, exclusive, reverse).eval() 230 tf_out = math_ops.cumprod(x, axis).eval() 267 math_ops.cumprod(input_tensor, -3).eval() 271 math_ops.cumprod(input_tensor, 2).eval() 275 math_ops.cumprod(input_tensor, [0]).eval() 281 result = math_ops.cumprod(t, axis, exclusive, reverse)
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_scan.cpp | 39 result = tensor.cumprod(0, Exclusive); in test_1d_scan()
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_array_ops.py | 217 split_size = math_ops.cumprod(mask_shape) + 1
|
D | ragged_tensor.py | 1136 dim_size = math_ops.cumprod(input_shape)
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | math_test.py | 323 return math_ops.cumprod(
|
D | pfor.py | 2001 @RegisterPForWithArgs("Cumprod", math_ops.cumprod)
|
/external/tensorflow/tensorflow/python/ops/ |
D | math_grad.py | 176 left = math_ops.cumprod(reshaped, axis=0, exclusive=True) 177 right = math_ops.cumprod(reshaped, axis=0, exclusive=True, reverse=True) 1368 prod = math_ops.cumprod(x, axis, exclusive=exclusive, reverse=reverse)
|
D | math_ops.py | 3070 def cumprod(x, axis=0, exclusive=False, reverse=False, name=None): function 3117 return gen_math_ops.cumprod(
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.math.pbtxt | 108 name: "cumprod"
|
D | tensorflow.keras.backend.pbtxt | 128 name: "cumprod"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 108 name: "cumprod"
|
D | tensorflow.keras.backend.pbtxt | 128 name: "cumprod"
|
D | tensorflow.pbtxt | 1036 name: "cumprod"
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/ |
D | attention_wrapper_test.py | 518 cumprod_output = math_ops.cumprod(
|
/external/tensorflow/tensorflow/python/keras/ |
D | backend.py | 1713 def cumprod(x, axis=0): function 1723 return math_ops.cumprod(x, axis=axis)
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorBase.h | 512 cumprod(const Index& axis, bool exclusive = false) const {
|
D | README.md | 1204 ### <Operation> cumprod(const Index& axis)
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/ |
D | attention_wrapper.py | 1252 attention = p_choose_i*math_ops.cumprod(
|
/external/tensorflow/ |
D | RELEASE.md | 50 * Improve performance of GPU cumsum/cumprod by up to 300x.
|