Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Cumsum (0.13 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)
Back to top