Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for floor_mod (0.24 sec)

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

      // CHECK: "tfl.where"(%arg0) : (tensor<3x5xi1>) -> tensor<?x2xi64>
    }
    
    func.func @floor_mod(%arg0: tensor<5xf32>, %arg1: tensor<5xf32>) -> tensor<5xf32> {
      %0 = "tf.FloorMod"(%arg0, %arg1) : (tensor<5xf32>, tensor<5xf32>) -> tensor<5xf32>
      func.return %0 : tensor<5xf32>
      // CHECK-LABEL: floor_mod
      // CHECK: "tfl.floor_mod"(%arg0, %arg1) : (tensor<5xf32>, tensor<5xf32>) -> tensor<5xf32>
    }
    
    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/ir/tfl_ops.td

        }
        void $cppClass::print(OpAsmPrinter &p) {
          return printOneResultOp(getOperation(), p);
        }
      }];
    }
    
    def TFL_FloorModOp : TFL_Op<"floor_mod", [
        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)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0#0 : tensor<2 x f32>
    }
    
    // -----
    
    // CHECK-LABEL: testFloorMod
    func.func @testFloorMod(%arg0: tensor<? x i32>, %arg1: tensor<? x i32>) -> tensor<? x i32> {
      %0 = "tfl.floor_mod"(%arg0, %arg1) : (tensor<? x i32>, tensor<? x i32>) -> tensor<? x i32>
      func.return %0 : tensor<? x i32>
    }
    
    // CHECK-LABEL: testPow
    func.func @testPow(tensor<? x i32>, tensor<? x i32>) -> tensor<? x i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top