Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for broadcast_or (0.21 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           return %[[VAL_2]] : tensor<1x2xi1>
    // CHECK:         }
    func.func @or_broadcast(%arg0: tensor<1xi1>, %arg1: tensor<1x2xi1>) -> tensor<1x2xi1> {
      %0 = "chlo.broadcast_or"(%arg0, %arg1) {broadcast_dimensions = array<i64: 1>} : (tensor<1xi1>, tensor<1x2xi1>) -> tensor<1x2xi1>
      func.return %0 : tensor<1x2xi1>
    }
    
    // CHECK-LABEL:   func @or_dynamic(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Broadcasts `input` to the shape of `broadcast_to` value following
    // TF::BroadcastTo semantics.
    //
    // Requires that input is a ranked tensor.
    //
    // TODO(hinsu): Utilize TF::ShapeOp followed by TF::BroadcastTo once ShapeOp
    // supports unranked inputs in the lowering.
    static Value BroadcastToShapeOf(Location loc, Value input, Value broadcast_to,
                                    OpBuilder &builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %cst = arith.constant dense<0> : tensor<1xui32>
      %0 = "tfl.broadcast_to"(%cst, %arg0) : (tensor<1xui32>, tensor<1xi32>) -> tensor<?xui32>
      return %0 : tensor<?xui32>
    
      // CHECK:  %cst = arith.constant dense<0> : tensor<1xui32>
      // CHECK:  %0 = "tfl.broadcast_to"(%cst, %arg0) : (tensor<1xui32>, tensor<1xi32>) -> tensor<?xui32>
      // CHECK:  return %0 : tensor<?xui32>
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - K8s.io/client-go/tools/record.EventBroadcaster: after Shutdown() is called, the broadcaster now gives up immediately after a failure to write an event to a sink. Previously it tried multiple times for 12 seconds in a goroutine. ([#115514](https://github.com/kubernetes/kubernetes/pull/115514), [@pohly](https://github.com/pohly)) [SIG API...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top