Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for floor_v1 (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-NEXT:}
    
    func.func @floor(%arg0: tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32> {
     %0 = "vhlo.floor_v1" (%arg0) : (tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32>
     func.return %0 : tensor<1x1x1x96xf32>
    }
    
    //CHECK:func.func private @floor(%arg0: tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32> {
    //CHECK-NEXT: %0 = "vhlo.floor_v1"(%arg0) : (tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32>
    //CHECK-NEXT: return %0 : tensor<1x1x1x96xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                      (MHLO_ConstantOp $half1),
                      MHLO_ComparisonDirectionValue<"EQ">,
                      $compare_type1),
                    (MHLO_CompareOp
                      (MHLO_SubtractOp
                        $floor1,
                        (MHLO_MulOp
                          (MHLO_FloorOp (MHLO_MulOp $input, (MHLO_ConstantOp $half2))),
                          (MHLO_ConstantOp $two))),
                      (MHLO_ConstantOp $one1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            return BuildStablehloOperatorwithoutOptions(
                inst, operands, results,
                tflite::BuiltinOperator_STABLEHLO_EXPONENTIAL);
          }
          if (auto vhlo_op = llvm::dyn_cast<mlir::vhlo::FloorOpV1>(inst)) {
            return BuildStablehloOperatorwithoutOptions(
                inst, operands, results, tflite::BuiltinOperator_STABLEHLO_FLOOR);
          }
          if (auto vhlo_op = llvm::dyn_cast<mlir::vhlo::LogOpV1>(inst)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            op.getLoc(),
            ChangeTensorElementType(&rewriter, out_type, rewriter.getF32Type()), l,
            r);
    
        auto floor_op =
            rewriter.create<ConvertOp>(op.getLoc(), out_type, intermediate);
        rewriter.replaceOp(op, floor_op.getResult());
        return success();
      }
    };
    
    class ConvertBroadcastToOp : public OpRewritePattern<TF::BroadcastToOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
Back to top