Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Tpaddings (0.14 sec)

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

      %paddings = "tf.Const"() {value = dense<[[1, 2], [1, 2]]> : tensor<2x2xi64>} : () -> tensor<2x2xi64>
      // expected-error @+1 {{requires block_shape[i] divides input_shape[i + 1] + paddings[i, 0] + paddings[i, 1]; failed for i=1}}
      %1 = "tf.SpaceToBatchND"(%input, %block_shape, %paddings) : (tensor<3x5x7x10xf32>, tensor<2xi64>, tensor<2x2xi64>) -> tensor<36x2x3x10xf32>
    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/lite/ir/tfl_ops.td

        for padding `input`.
    
        The padded size of each dimension D of the output is:
    
          `paddings(D, 0) + input.dim_size(D) + paddings(D, 1)`
    
        For example:
    
        ```
        # 't' is [[1, 1], [2, 2]]
        # 'paddings' is [[1, 1], [2, 2]]
        # rank of 't' is 2
        pad(t, paddings) ==> [[0, 0, 0, 0, 0, 0]
                              [0, 0, 1, 1, 0, 0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return failure();
    
      ElementsAttr padding;
      if (matchPattern(op.getPadding(), m_Constant(&padding))) {
        const ShapedType &padding_ty = cast<ShapedType>(padding.getType());
        if (padding_ty.getRank() != 2 || padding_ty.getDimSize(1) != 2) {
          return op.emitOpError()
                 << "expects padding to be a matrix with minor dimension 2, got "
                 << padding.getShapedType().getShape();
        }
      }
    
    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. src/main/webapp/css/bootstrap.min.css

    -2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5r...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/bootstrap.min.css

    -2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5r...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 155.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    -2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5r...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          // stablehlo.convolution op needs explicit padding to be set to model any
          // Transposed-Convolution in JAX/PT. Checking to see if-
          // 1. Pre set padding matches to the desired padding
          // 2. Output size respects the `VALID` padding scenario
          if ((padding[2 * i] == padding[2 * i + 1]) &&
              (((kernel_size - 1) != padding[2 * i]) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        SmallVector<int64_t> padded_shape(tensor_shape.begin(), tensor_shape.end());
        for (int i = 0; i < padded_shape.size(); ++i) {
          // Left padding + right padding.
          int32_t padding = tfl_pad_values[i * 2] + tfl_pad_values[i * 2 + 1];
          padded_shape[i] += padding;
        }
    
        return padded_shape;
      }
    
      std::pair<int64_t, int64_t> GetDimSize(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        return emitOptionalError(op.getLoc(), "Invalid data format provided");
      }
    
      const StringRef paddings = op.getPadding();
      tensorflow::Padding padding;
      auto padding_is_valid = GetPaddingFromString(paddings.str(), &padding);
      if (!padding_is_valid.ok()) {
        return emitOptionalError(op.getLoc(), "Invalid padding format provided");
      }
    
      // Verifies that,
      // * Ranks of operands and result are valid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // CHECK: "VALID"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top