Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dilation_rate (0.12 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)
Back to top