Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for ResizeBilinear (0.69 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %outputs_18 = "tf.ExpandDims"(%outputs_16, %outputs_0) {device = ""} : (tensor<?x?x3xui8>, tensor<i32>) -> tensor<1x?x?x3xui8>
      %outputs_20 = "tf.ResizeBilinear"(%outputs_18, %outputs) {align_corners = false, device = "", half_pixel_centers = false} : (tensor<1x?x?x3xui8>, tensor<2xi32>) -> tensor<1x224x224x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

      // b/135640736: MatrixInverse performance issues.
      // b/111271662: MatrixSolve performance issues.
      // https://github.com/tensorflow/tensorflow/pull/31012:
      //    ResizeNearestNeighbor, ResizeBilinear, and ResizeBilinearGrad sometimes
      //    create convolutions too large for CuDNN to handle.
      return node.type_string() == "SelfAdjointEigV2" ||
             node.type_string() == "Svd" || node.type_string() == "Qr" ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-DAG:       %[[SIZE:.*]] = "tf.Const"() <{value = dense<[56, 904]> : tensor<2xi32>}> : () -> tensor<2xi32>
    // CHECK:           %[[VAL_2:.*]] = "tf.ResizeBilinear"(%[[VAL_0]], %[[SIZE]]) <{align_corners = true, half_pixel_centers = false}> : (tensor<1x56x624x16xf32>, tensor<2xi32>) -> tensor<1x56x904x16xf32>
    // CHECK:           return %[[VAL_2]] : tensor<1x56x904x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  7. 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)
  8. 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