Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dilation_rate (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

    }
    
    // Given Value input_size, and known numbers filter_sz, dilation_rate, stride,
    // calculate padding_low and padding_high for SAME padding.
    void GetSamePaddingValues(OpBuilder &builder, Location loc, Value input_size,
                              int64_t filter_sz, int64_t dilation_rate,
                              int64_t stride, Value &padding_low,
                              Value &padding_high) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                            Value filter_size, int64_t dilation_rate,
                            int64_t stride, tensorflow::Padding padding_type,
                            Type shape_scalar_type, Value *padding_low,
                            Value *padding_high) const {
        // Stride must be > 0
        if (stride <= 0) return false;
        // Dilation rate must be >= 1
        if (dilation_rate < 1) return false;
    
        Location loc = op.getLoc();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    static LogicalResult ComputeConvWindowedOutputSize(
        int64_t input_size, int64_t filter_size, int64_t dilation_rate,
        int64_t stride, tensorflow::Padding padding, int64_t* output_size) {
      int64_t pad_low;
      int64_t pad_high;
    
      tensorflow::Status status = tensorflow::GetWindowedOutputSizeVerbose(
          input_size, filter_size, dilation_rate, stride, padding, output_size,
          &pad_low, &pad_high);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // following condition must hold true for padding to be `VALID`:
        // output_spatial_shape[i] = ceil((input_spatial_shape[i] -
        // (spatial_filter_shape[i]-1) * dilation_rate[i]) / strides[i])
        auto get_output_dim_for_valid_padding =
            [](int64_t input_dim, int64_t dilation_dim, int64_t kernel_dim,
               int64_t stride_dim) -> int64_t {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top