Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sdiv (0.2 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // Fusing-LABEL: FusingdivRelu
    // Fusing:  %[[div:[0-9].*]] = tfl.div %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<1xf32>
    // Fusing:  %[[div1:[0-9].*]] = tfl.div %arg0, %[[div]] {fused_activation_function = "RELU"} : tensor<1xf32>
    // Fusing:  %[[relu:[0-9].*]] = "tfl.relu"(%arg0) : (tensor<1xf32>) -> tensor<1xf32>
    // Fusing:  %[[div2:[0-9].*]] = tfl.div %[[relu]], %[[div1]] {fused_activation_function = "RELU6"} : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-LABEL: func @floordiv_broadcast_i32
    func.func @floordiv_broadcast_i32(%arg0: tensor<2x3xi32>, %arg1: tensor<3xi32>) -> tensor<2x3xi32> {
      // CHECK-DAG: [[DIV:%.+]] = chlo.broadcast_divide %arg0, %arg1 {broadcast_dimensions = array<i64: 1>}
      // CHECK-DAG: [[MUL:%.+]] = chlo.broadcast_multiply [[DIV]], %arg1 {broadcast_dimensions = array<i64: 1>}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      func.return %0 : tensor<4x4x4x4xi32>
    }
    
    // CHECK-LABEL:   func @div(
    // CHECK-SAME:              %[[VAL_0:.*]]: tensor<2xi32>) -> tensor<2xi32> {
    // CHECK:           %[[VAL_1:.*]] = "tf.Div"(%[[VAL_0]], %[[VAL_0]]) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi32>
    // CHECK:           return %[[VAL_1]] : tensor<2xi32>
    // CHECK:         }
    func.func @div(%arg0: tensor<2xi32>) -> tensor<2xi32> {
      %0 = mhlo.divide %arg0, %arg0 : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.ODIV, types.TFLOAT32}: ssa.OpDiv32F,
    	{ir.ODIV, types.TFLOAT64}: ssa.OpDiv64F,
    
    	{ir.ODIV, types.TINT8}:   ssa.OpDiv8,
    	{ir.ODIV, types.TUINT8}:  ssa.OpDiv8u,
    	{ir.ODIV, types.TINT16}:  ssa.OpDiv16,
    	{ir.ODIV, types.TUINT16}: ssa.OpDiv16u,
    	{ir.ODIV, types.TINT32}:  ssa.OpDiv32,
    	{ir.ODIV, types.TUINT32}: ssa.OpDiv32u,
    	{ir.ODIV, types.TINT64}:  ssa.OpDiv64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ngth);if(n||a){e.remove();return}e.value=r}parse(e){let t=zm(e),r=[],n=[];for(let a of t.nodes)n.push(a),a.type==="div"&&a.value===","&&(r.push(n),n=[]);return r.push(n),r.filter(a=>a.length>0)}stringify(e){if(e.length===0)return"";let t=[];for(let r of e)r[r.length-1].type!=="div"&&r.push(this.div(e)),t=t.concat(r);return t[0].type==="div"&&(t=t.slice(1)),t[t.length-1].type==="div"&&(t=t.slice(0,-2+1||void 0)),zm.stringify({nodes:t})}clone(e,t,r){let n=[],a=!1;for(let s of r)!a&&s.type==="word"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // division can result in strange behavior.
    //
    //      floordiv = cast(floordiv(cast(left), cast(right))))
    //
    //   %left_cast = cast(%left)
    //   %right_cast = cast(%right)
    //   %div = div(%left, %left)
    //   %floored = floor(%div)
    //   %floored_cast = cast(%floored)
    //
    // Required to manually specify the intermediate types.
    class ConvertBF16FloorDivOp : public OpRewritePattern<TF::FloorDivOp> {
     public:
    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