Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for window_strides (0.36 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @below {{'tf.UniformQuantizedConvolutionHybrid' op quantization_axis is -1, scales must have 0 rank.}}
      %0 = "tf.UniformQuantizedConvolutionHybrid"(%lhs, %rhs, %rhs_scales, %rhs_zps) {
        window_strides = [1, 2],
        padding = "VALID",
        explicit_padding = [],
        lhs_dilation = [1, 1],
        rhs_dilation = [2, 2],
        batch_group_count = 1 : i64,
        feature_group_count = 1 : i64,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: %[[RESULT:.*]] = "mhlo.select_and_scatter"(%[[INPUT]], %[[GRAD]], %[[ZERO]]) <{
        // CHECK-SAME:  padding = dense<0> : tensor<4x2xi64>, window_dimensions = dense<[1, 2, 2, 1]> : tensor<4xi64>, window_strides = dense<[1, 2, 2, 1]> : tensor<4xi64>
        // CHECK-SAME }> ({
        // CHECK: ^bb0(%[[VALUE_A:.*]]: tensor<f32>, %[[VALUE_B:.*]]: tensor<f32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

            }
          }
        }
        return success();
      };
    
      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();
    
    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/lite/tests/prepare-tf.mlir

      %2 = "tf.Const"() {value = dense<1> : tensor<2x2xi32>} : () -> tensor<2x2xi32> loc("XlaConv/padding")
      %3 = "tf.Const"() {value = dense<1> : tensor<2xi32>} : () -> tensor<2xi32> loc("XlaConv/window_strides")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Same shape condition as `output_scales`.}]>:$output_zero_points,
    
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$window_strides,
        StrAttr:$padding,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$explicit_padding,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$lhs_dilation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        if target_opset == quant_opts_pb2.UNIFORM_QUANTIZED:
          self.assertTrue(
              self._contains_op(
                  output_graphdef,
                  'UniformQuantizedConvolutionHybrid',
                  'window_strides',
                  strides_attr,
              )
          )
          self.assertFalse(
              self._contains_op(output_graphdef, 'DepthwiseConv2dNative')
          )
          if enable_per_channel_quantization:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top