Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 12p6 (0.82 sec)

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

    tf.matrix_diag_part(input) ==> [[1, 6, 7],  # Output shape: (2, 3)
                                    [5, 2, 7]]
    
    # A superdiagonal from each batch.
    tf.matrix_diag_part(input, k = 1)
      ==> [[2, 7, 6],  # Output shape: (2, 3)
           [4, 3, 8]]
    
    # A band from each batch.
    tf.matrix_diag_part(input, k = (-1, 2))
      ==> [[[0, 3, 8],  # Output shape: (2, 4, 3)
            [2, 7, 6],
            [1, 6, 7],
    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