Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ResizeBilinear (0.65 sec)

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

    }
    
    func.func @resize_with_bilinear(%arg0: tensor<1x100x100x3xf32>, %arg1: tensor<4xi32>) -> tensor<?xf32> {
      %0 = "tf.ResizeBilinear"(%arg0, %arg1) {align_corners = true} : (tensor<1x100x100x3xf32>, tensor<4xi32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
      // CHECK-LABEL: resize_with_bilinear
    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

          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        TFL_OperandHasRank<0, 4>,
        TFL_OperandHasRank<1, 1>,
        SameOperandsAndResultsScale]> {
      let summary = "ResizeBilinear Op";
    
      let description = [{
        Resize `images` to `size` using bilinear interpolation.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, TFL_Quint8, QUI8, QI8, QI16]>:$input,
    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/tensorflow/ir/tf_generated_ops.td

        OpBuilder<(ins "Value":$tensor, "Value":$shape)>
      ];
    
      let hasVerifier = 1;
    
      let hasCanonicalizer = 1;
      let hasFolder = 1;
    }
    
    def TF_ResizeBilinearOp : TF_Op<"ResizeBilinear", [Pure]> {
      let summary = "Resize `images` to `size` using bilinear interpolation.";
    
      let description = [{
    Input images can be of different types but output images are always float.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. RELEASE.md

            is now supported and enabled by default. This adds support for more
            TensorFlow ops including Conv3D, Conv3DBackpropInputV2, AvgPool3D,
            MaxPool3D, ResizeBilinear, and ResizeNearestNeighbor. In addition, the
            TensorFlow-TensorRT python conversion API is exported as
            `tf.experimental.tensorrt.Converter`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top