Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SQUEEZE (0.09 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.Squeeze"(%arg0) : (tensor<1x2x2xf32>) -> tensor<2x2xf32>
      func.return %0 : tensor<2x2xf32>
    
    // CHECK-LABEL:squeezeDefault
    // CHECK:  "tfl.squeeze"(%arg0) <{squeeze_dims = []}> : (tensor<1x2x2xf32>) -> tensor<2x2xf32>
    }
    
    func.func @squeezeSingleAxis(%arg0: tensor<2x1x2xf32>) -> tensor<2x2xf32> {
      %0 = "tf.Squeeze"(%arg0) {squeeze_dims = [1]} : (tensor<2x1x2xf32>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    This operation is related to `squeeze()`, which removes dimensions of
    size 1.
      }];
    
      // TODO: Restriction on dim's size and valid range are not modeled here.
      let arguments = (ins AnyTensor:$input, TFL_I32OrI64Tensor:$dim);
    
      let results = (outs AnyTensor:$output);
    
      let hasOptions = 1;
    }
    
    def TFL_SqueezeOp: TFL_Op<"squeeze", [Pure,
    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

      if (!input_type) return success();  // Can't verify squeeze dims.
    
      int64_t input_rank = input_type.getRank();
      for (const auto &squeeze_dim_apint :
           op.getSqueezeDims().getAsValueRange<IntegerAttr>()) {
        int64_t squeeze_dim = squeeze_dim_apint.getSExtValue();
        if (squeeze_dim < -input_rank || squeeze_dim >= input_rank) {
          return op.emitOpError()
                 << "squeeze dimension " << squeeze_dim << " not in ["
    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/tensorflow/tests/tf-ops.mlir

      func.return
    }
    
    // -----
    
    func.func @testSqueezeOutOfBounds(%arg0: tensor<?x?x10xf32>) -> tensor<?x10xf32> {
      // expected-error @+1 {{squeeze dimension -4 not in [-3, 3)}}
      %0 = "tf.Squeeze"(%arg0) { squeeze_dims = [-4] }: (tensor<?x?x10xf32>) -> tensor<?x10xf32>
      func.return %0 : tensor<?x10xf32>
    }
    
    // -----
    
    func.func @testTernaryEinsum(%arg0: tensor<2x3xf32>){
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // Example- "tfl.transpose"(tensor<56x8x56x1x1x1x7xf32>, [4, 5, 1, 2, 0, 6, 3])
    // Permutation before squeese is [4, 5, 1, 2, 0, 6, 3] becomes [1, 2, 0, 3]
    // after squeeze is perfomed to retain the relative ordering of the non-1 dims.
    DenseElementsAttr GetSqueezedPermutation(Value input_value,
                                             Value input_permutation) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    beginning to grow larger again, and she thought at first she
    would get up and leave the court; but on second thoughts she
    decided to remain where she was as long as there was room for
    her.
    
      `I wish you wouldn't squeeze so.' said the Dormouse, who was
    sitting next to her.  `I can hardly breathe.'
    
      `I can't help it,' said Alice very meekly:  `I'm growing.'
    
      `You've no right to grow here,' said the Dormouse.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    beginning to grow larger again, and she thought at first she
    would get up and leave the court; but on second thoughts she
    decided to remain where she was as long as there was room for
    her.
    
      `I wish you wouldn't squeeze so.' said the Dormouse, who was
    sitting next to her.  `I can hardly breathe.'
    
      `I can't help it,' said Alice very meekly:  `I'm growing.'
    
      `You've no right to grow here,' said the Dormouse.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    opposition to transmit the magnetick Effluvia, and easily to admit Quicksilver into its Pores, and to let Water pass through it. For a concave Sphere of Gold filled with Water, and solder'd up, has, upon pressing the Sphere with great force, let the Water squeeze through it, and stand all over its outside in multitudes of small Drops, like Dew, without bursting or cracking the Body of the Gold, as I have been inform'd by an Eye witness. From all which we may conclude, that Gold has more Pores than solid parts,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top