Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wbMove (0.13 sec)

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

    For example:
    
    >>> x = tf.constant([[1, 2, 3]])   # Shape (1, 3,)
    >>> y = tf.broadcast_to(x, [2, 3])
    >>> print(y)
    tf.Tensor(
        [[1 2 3]
         [1 2 3]], shape=(2, 3), dtype=int32)
    
    In the above example, the input Tensor with the shape of `[1, 3]`
    is broadcasted to output Tensor with shape of `[2, 3]`.
    
    When broadcasting, if a tensor has fewer axes than necessary its shape is
    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

    ### Major Features and Improvements
    
    *   <INSERT MAJOR FEATURE HERE, USING MARKDOWN SYNTAX>
    *   <IF RELEASE CONTAINS MULTIPLE FEATURES FROM SAME AREA, GROUP THEM TOGETHER>
    
    ### Bug Fixes and Other Changes
    
    * <SIMILAR TO ABOVE SECTION, BUT FOR OTHER IMPORTANT CHANGES / BUG FIXES>
    * <IF A CHANGE CLOSES A GITHUB ISSUE, IT SHOULD BE DOCUMENTED HERE>
    * <NOTES SHOULD BE GROUPED PER AREA>
    
    * `tf.data`
    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