Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for base_dilation (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      DenseElementsAttr window_dimensions, window_strides, base_dilations,
          window_dilations, padding;
      if (input_ty.hasStaticShape() &&
          matchPattern(op.getWindowDimensions(), m_Constant(&window_dimensions)) &&
          matchPattern(op.getWindowStrides(), m_Constant(&window_strides)) &&
          matchPattern(op.getBaseDilations(), m_Constant(&base_dilations)) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          builder_.CreateVector(std::vector<int64_t>(wd.begin(), wd.end()));
      auto window_strides = builder_.CreateVector(
          mlir::GetOptionalVector<int64_t>(reduce_window_op.getWindowStrides()));
      auto base_dilations = builder_.CreateVector(
          mlir::GetOptionalVector<int64_t>(reduce_window_op.getBaseDilations()));
      auto window_dilations = builder_.CreateVector(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (check(op.getWindowDimensions(), "window_dimensions").failed())
        return failure();
    
      if (check(op.getWindowStrides(), "window_strides").failed()) return failure();
    
      if (check(op.getBaseDilations(), "base_dilations").failed()) return failure();
    
      if (check(op.getWindowDilations(), "window_dilations").failed())
        return failure();
    
      ElementsAttr padding;
      if (matchPattern(op.getPadding(), m_Constant(&padding))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %cst_2 = "tf.Const"() {value = dense<3> : tensor<2xi32>} : () -> tensor<2xi32>
      %cst_3 = "tf.Const"() {value = dense<4> : tensor<1xi32>} : () -> tensor<1xi32>
      // expected-error @+1 {{tf.XlaReduceWindow' op expects the size of base_dilations to be equal to the input rank (2 vs. 1)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top