/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 | 58 elif func == np.cumprod: 166 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse) 169 prod = math_ops.cumprod(p, axis, exclusive, reverse) 192 math_ops.cumprod(x, axis).eval(feed_dict={p: x}) 226 math_ops.cumprod(input_tensor, -3).eval() 230 math_ops.cumprod(input_tensor, 2).eval() 234 math_ops.cumprod(input_tensor, [0]).eval()
|
/external/tensorflow/tensorflow/python/kernel_tests/control_flow/ |
D | scan_ops_test.py | 56 elif func == np.cumprod: 210 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse) 212 tf_out = math_ops.cumprod(x, axis, exclusive, reverse).eval() 235 tf_out = math_ops.cumprod(x, axis).eval() 281 math_ops.cumprod(input_tensor, -3).eval() 285 math_ops.cumprod(input_tensor, 2).eval() 289 math_ops.cumprod(input_tensor, [0]).eval() 295 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_conversion_ops.py | 131 leading_ones = math_ops.cumprod(dim_is_one)
|
D | ragged_gather_ops.py | 164 shape_cumprod = math_ops.cumprod(indices_shape)
|
D | ragged_tensor.py | 1694 dim_size = np.cumprod(input_shape) 1697 dim_size = math_ops.cumprod(input_shape)
|
D | ragged_array_ops.py | 202 split_size = math_ops.cumprod(mask_shape) + 1
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_array_ops.py | 426 def cumprod(a, axis=None, dtype=None): # pylint: disable=missing-docstring function 438 return math_ops.cumprod(a, axis) 1762 index_scaling = math_ops.cumprod(
|
D | np_array_ops_test.py | 644 np_array_ops.cumprod(arg, *args, **kwargs), 645 np.cumprod(arg, *args, **kwargs))
|
/external/tensorflow/tensorflow/python/ops/ |
D | math_grad.py | 302 left = math_ops.cumprod(reshaped, axis=0, exclusive=True) 303 right = math_ops.cumprod(reshaped, axis=0, exclusive=True, reverse=True) 1993 prod = math_ops.cumprod(x, axis, exclusive=exclusive, reverse=reverse)
|
D | math_ops.py | 4334 def cumprod(x, axis=0, exclusive=False, reverse=False, name=None): function 4381 return gen_math_ops.cumprod(
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | math_test.py | 446 return math_ops.cumprod(
|
D | pfor.py | 2374 cumsize = math_ops.cumprod(result_shape, exclusive=True, reverse=True) 2697 cumsize = math_ops.cumprod(unstacked_shape, exclusive=True, reverse=True) 2840 @RegisterPForWithArgs("Cumprod", math_ops.cumprod)
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 120 name: "cumprod"
|
D | tensorflow.pbtxt | 1080 name: "cumprod"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.math.pbtxt | 120 name: "cumprod"
|
/external/tensorflow/tensorflow/python/ops/structured/ |
D | structured_tensor.py | 1331 shape_cumprod = math_ops.cumprod(shape[:rank])
|
/external/tensorflow/third_party/py/numpy/tf_numpy_api/ |
D | tensorflow.experimental.numpy.pbtxt | 312 name: "cumprod"
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorBase.h | 643 cumprod(const Index& axis, bool exclusive = false) const {
|
D | README.md | 1264 ### <Operation> cumprod(const Index& axis)
|
/external/tensorflow/tensorflow/python/keras/ |
D | backend.py | 2378 def cumprod(x, axis=0): function 2388 return math_ops.cumprod(x, axis=axis)
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_generated_ops.td | 2949 By default, this op performs an inclusive cumprod, which means that the first 2953 tf.cumprod([a, b, c]) # => [a, a * b, a * b * c] 2956 By setting the `exclusive` kwarg to `True`, an exclusive cumprod is 2960 tf.cumprod([a, b, c], exclusive=True) # => [1, a, a * b] 2963 By setting the `reverse` kwarg to `True`, the cumprod is performed in the 2967 tf.cumprod([a, b, c], reverse=True) # => [a * b * c, b * c, c] 2975 tf.cumprod([a, b, c], exclusive=True, reverse=True) # => [b * c, c, 1]
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/ |
D | legalize-tf-no-tf2xla-fallback.mlir | 5847 // CHECK-LABEL: func @cumprod 5848 func.func @cumprod(%arg0: tensor<4xf32>) -> tensor<4xf32> {
|
D | legalize-tf.mlir | 6016 // CHECK-LABEL: func @cumprod 6017 func.func @cumprod(%arg0: tensor<4xf32>) -> tensor<4xf32> {
|