Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for padding_low (0.41 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/jit/xla_ops_on_regular_devices.cc

                              XlaCompileOnDemandOp);                               \
      REGISTER_KERNEL_BUILDER(Name("XlaPad")                                       \
                                  .HostMemory("padding_low")                       \
                                  .HostMemory("padding_high")                      \
                                  .HostMemory("padding_interior")                  \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 19:55:14 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::XlaDynamicSliceOp, 2>,  // $slice_indices
          CompileTimeConstantOperand<TF::XlaGatherOp, 2>,        // $slice_sizes
          // $padding_low, $padding_high, $padding_interior
          CompileTimeConstantOperand<TF::XlaPadOp, 2, 3, 4>,
          // $window_dimensions, $window_strides, $base_dilations,
          // $window_dilations, $padding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                loc, padding_needed.getType(), cond, padding_needed, zero);
            *padding_low =
                rewriter.create<arith::DivUIOp>(loc, padding_needed, two);
            *padding_high =
                rewriter.create<arith::SubIOp>(loc, padding_needed, *padding_low);
            break;
          }
        }
        return true;
      }
    
      LogicalResult matchAndRewriteDynamicConv(OpT op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            operand_type.cloneWith(shape, rewriter.getI32Type());
    
        ArrayRef<int64_t> padding_low = op.getEdgePaddingLow();
        ArrayRef<int64_t> padding_high = op.getEdgePaddingHigh();
        SmallVector<int32_t> padding_value;
        for (int i = 0; i < rank; ++i) {
          padding_value.push_back(CastI64ToI32(padding_low[i]).value());
          padding_value.push_back(CastI64ToI32(padding_high[i]).value());
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        } else {
          const int64_t dilated_base = xla::window_util::DilatedBound(
              base_shape.getDimSize(i), dim.base_dilation());
          const int64_t padded_dilated_base =
              dim.padding_low() + dilated_base + dim.padding_high();
          const int64_t dilated_window =
              xla::window_util::DilatedBound(dim.size(), dim.window_dilation());
    
          output_dimensions[i] = xla::window_util::StridedBound(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_I32OrI64Tensor, [{the padding to apply at the start of each input dimensions. Must
    be a compile-time constant 1D tensor of length equal to rank of input.}]>:$padding_low,
        Arg<TF_I32OrI64Tensor, [{the padding to apply at the end of each input dimension. Must
    be a compile-time constant 1D tensor of length equal to rank of input.}]>:$padding_high,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/encoding/json/testdata/code.json.gz

    3746349612314,"touches":4,"min_t":1228851457,"max_t":1238022568,"mean_t":1233139606},{"name":"border_style-expected.png","kids":[],"cl_weight":0.006942015827872924,"touches":4,"min_t":1228851457,"max_t":1238022568,"mean_t":1233138547},{"name":"padding_top-expected.checksum","kids":[],"cl_weight":0.006942015827872924,"touches":4,"min_t":1228851457,"max_t":1238022568,"mean_t":1233138547},{"name":"margin_inline-expected.checksum","kids":[],"cl_weight":0.006942015827872924,"touches":4,"min_t":122885...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top