Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for padding_values (1.21 sec)

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

        padding_value                 ; otherwise.
    ```
    where `y = max(-k[1], 0)`, `x = max(k[1], 0)`.
    
    Otherwise, the output tensor has rank `r` with dimensions
    `[I, J, ..., L, num_diags, max_diag_len]` with values:
    
    ```
    diagonal[i, j, ..., l, m, n]
      = input[i, j, ..., l, n+y, n+x] ; if 0 <= n+y < M and 0 <= n+x < N,
        padding_value                 ; otherwise.
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // values will be undefined. So we mask them later. Set up the boolean
        // expression that tells us which entries, in the output shape, are out of
        // bounds and thus become the padding_value.
        Value x_in_bounds = rewriter.create<AndOp>(
            loc,
            rewriter.create<TF::GreaterEqualOp>(loc, b_false.getType(), n_plus_x,
                                                b_zero),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top