Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MAX_POOL_2D (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    }
    
    // CHECK-LABEL: reduce_window_not_4d
    // CHECK: stablehlo.reduce_window
    // CHECK-NOT: tfl.max_pool_2d
    
    // -----
    
    // Tests that a quantized `stablehlo.reduce_window` with max that takes multiple
    // inputs is not converted to `tfl.max_pool_2d`.
    
    func.func @reduce_window_not_binary(
      %arg0: tensor<3x2x9x10x3x!quant.uniform<i8:f32, 3.000000e-01:-5>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testMaxPool2D(tensor<256x32x32x3xf32>) -> tensor<?xf32> {
    ^bb0(%arg0: tensor<256x32x32x3xf32>):
      // CHECK: "tfl.max_pool_2d"(%arg0) <{filter_height = 1 : i32, filter_width = 1 : i32, fused_activation_function = "RELU6", padding = "SAME", stride_h = 1 : i32, stride_w = 1 : i32}> : (tensor<256x32x32x3xf32>) -> tensor<?xf32>
    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/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          // iteration.
          input_dims.push_back(static_cast<int64_t>(dim_to_expand));
        }
        return input;
      }
    };
    
    // Rewrites quantized stablehlo.reduce_window with max to tfl.max_pool_2d.
    class RewriteQuantizedReduceWindowOpWithMax
        : public OpRewritePattern<stablehlo::ReduceWindowOp> {
     public:
      using OpRewritePattern<stablehlo::ReduceWindowOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %5 = arith.addf %0, %1 : tensor<1x1x1x16xf32>
      %6 = arith.addf %2, %5 : tensor<1x1x1x16xf32>
      func.return %6 : tensor<1x1x1x16xf32>
    
    // CHECK-LABEL: func @maxPool2D
    // CHECK:  "tfl.max_pool_2d"(%arg0) <{filter_height = 3 : i32, filter_width = 6 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 3 : i32, stride_w = 1 : i32}> : (tensor<1x1x1x16xf32>) -> tensor<1x1x1x16xf32>
    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

        return quant::GetFixedOutputRange(is_signed, bit_width, result_type,
            /*scale=*/16.0 / 256, /*zero_point=*/127);
      }
      }];
    }
    
    def TFL_MaxPool2DOp : TFL_Op<"max_pool_2d", [
        TFL_OperandHasRank<0, 4>,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        Pure,
        SameOperandsAndResultsScale,
        QuantizableResult,
    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