Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 00ab0000 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    Returns a new tensor copied from `tensor` whose values are element-wise maximum between
    tensor and updates according to the indices.
    
    >>> tensor = [0, 0, 0, 0, 0, 0, 0, 0]
    >>> indices = [[1], [4], [5]]
    >>> updates = [1, -1, 1]
    >>> tf.tensor_scatter_nd_max(tensor, indices, updates).numpy()
    array([0, 1, 0, 0, 0, 1, 0, 0], dtype=int32)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top