Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FLOOR_DIV (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  return
    }
    
    func.func @floor_div(tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xf32> {
    ^bb0(%arg0: tensor<8x16xf32>, %arg1: tensor<8x16xf32>):
      %0 = "tf.FloorDiv"(%arg0, %arg1) : (tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    
    // CHECK-LABEL: floor_div
    // CHECK:  tfl.floor_div %arg0, %arg1 : tensor<8x16xf32>
    // CHECK:  return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    ^bb0(%arg0: tensor<? x i32>, %arg1: tensor<? x i32>):
      // CHECK: tfl.floor_div %arg0, %arg1
      %0 = tfl.floor_div %arg0, %arg1 : tensor<? x i32>
      func.return %0#0 : tensor<? x i32>
    }
    
    // -----
    
    // CHECK-LABEL: testFloorDivF32
    func.func @testFloorDivF32(tensor<? x f32>, tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>, %arg1: tensor<? x f32>):
      // CHECK: tfl.floor_div %arg0, %arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return TF::ArraysAreCastCompatible(l, r);
        }
      }];
    }
    
    def TFL_FloorDivOp : TFL_Op<"floor_div", [
        ResultsBroadcastableShape,
        Pure,
        BinaryOpSameElementTypeConstraint,
        PredOpTrait<"lhs and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top