Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for stride_w (0.73 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %1 = "tfl.relu"(%0) : (tensor<1x73x73x16xf32>) -> tensor<1x73x73x16xf32>
      func.return %1 : tensor<1x73x73x16xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          return failure();
    
        // We also need constant begin/end indices and strides to perform padding
        // calculations.
        // Bounded shape after performing strided slice
        SmallVector<int64_t, 4> shape;
        // Bounded begin, end, and strides for strided slice
        SmallVector<int64_t, 4> begin_indices, end_indices, strides;
        if (!op.GetSlicedShapeAndBoundRanges(&shape, &begin_indices, &end_indices,
    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/tf2xla/tests/legalize-tf.mlir

      // Dynamic stride: when `begin` and `end` inputs are unknown at compile time,
      // `strides` must be known.
      // CHECK: tf.StridedSlice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:         }
    func.func @convert_slice(%arg0: tensor<1x4672xf32>) -> tensor<1x519xf32> {
      %0 = "mhlo.slice"(%arg0) <{limit_indices = dense<[1, 4672]> : tensor<2xi64>, start_indices = dense<[0, 4153]> : tensor<2xi64>, strides = dense<1> : tensor<2xi64>}> : (tensor<1x4672xf32>) -> tensor<1x519xf32>
      func.return %0 : tensor<1x519xf32>
    }
    
    // CHECK-LABEL:   func @reshape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	//     rlen = j - i
    	//     rptr = ptr + (mask(rcap) & (i * stride))
    	//
    	// Where mask(x) is 0 if x==0 and -1 if x>0 and stride is the width
    	// of the element type.
    	stride := s.constInt(types.Types[types.TINT], ptr.Type.Elem().Size())
    
    	// The delta is the number of bytes to offset ptr by.
    	delta := s.newValue2(mulOp, types.Types[types.TINT], i, stride)
    
    	// If we're slicing to the point where the capacity is zero,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top