Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Cumsum (0.14 sec)

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

    performed instead:
    
    ```python
    tf.cumsum([a, b, c], exclusive=True)  # => [0, a, a + b]
    ```
    
    By setting the `reverse` kwarg to `True`, the cumsum is performed in the
    opposite direction:
    
    ```python
    tf.cumsum([a, b, c], reverse=True)  # => [a + b + c, b + c, c]
    ```
    
    This is more efficient than using separate `tf.reverse` ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

    *   GPU
        *   GPU acceleration now supports quantized models by default
    *   `DynamicBuffer::AddJoinedString()` will now add a separator if the first
        string to be joined is empty.
    *   Adds support for cumulative sum (cumsum), both as builtin op and MLIR
        conversion.
    
    ### `TensorRT`
    
    *   Issues a warning when the `session_config` parameter for the TF1 converter
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (result.getType() != op.getType())
          result = rewriter.create<tensor::CastOp>(loc, op.getType(), result);
        rewriter.replaceOp(op, result);
        return success();
      }
    };
    
    // Converts the Cumsum or Cumprod TensorFlow op to the HLO ReduceWindow op by
    // setting appropriate window dimensions, with the given aggregation op as the
    // reduction function. The input tensor needs to have a static shape, and 'axis'
    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