Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Tpaddings (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `paddings` you specify. `paddings` must be the same as `paddings` argument
    given to the corresponding `MirrorPad` op.
    
    The folded size of each dimension D of the output is:
    
    `input.dim_size(D) - paddings(D, 0) - paddings(D, 1)`
    
    For example:
    
    ```
    # 't' is [[1, 2, 3], [4, 5, 6], [7, 8, 9]].
    # 'paddings' is [[0, 1]], [0, 1]].
    # 'mode' is SYMMETRIC.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        ArrayAttr window_strides, StringRef padding, Builder *builder) {
      if (padding == "VALID") return {};
      assert(padding == "SAME");
      PaddingArray paddings = GetReduceWindowPaddingAsArray<num_dims>(
          input_dims, window_dims, window_strides, padding, builder);
      int64_t rank = paddings.size();
      llvm::SmallVector<int64_t, num_dims * 2> flatten_paddings(rank * 2);
    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/tensorflow/transforms/shape_inference.cc

        if (!window_strides.empty()) {
          dim->set_stride(window_strides[i]);
        } else {
          dim->set_stride(1);
        }
        if (!padding.empty()) {
          dim->set_padding_low(padding[i].first);
          dim->set_padding_high(padding[i].second);
        } else {
          dim->set_padding_low(0);
          dim->set_padding_high(0);
        }
        if (!lhs_dilation.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      pool_params.filter_height = op.filter_h().getSExtValue();
      pool_params.filter_width = op.filter_w().getSExtValue();
      const auto padding = GetTflitePadding(inst, op.padding());
      if (padding) {
        pool_params.padding = *padding;
        pool_params.activation = kTfLiteActNone;
        pool_params.computed.padding = TfLitePaddingValues{0, 0, 0, 0};
        return pool_params;
      }
    
      return std::nullopt;
    }
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    			pidx++
    			continue
    		}
    		if loggingEnabled {
    			state.logf("param %v:\n  [<entry>, %d]:\n", n, afterPrologVal)
    		}
    		rtypes, _ := inp.RegisterTypesAndOffsets()
    		padding := make([]uint64, 0, 32)
    		padding = inp.ComputePadding(padding)
    		for k, r := range inp.Registers {
    			var reg int16
    			if n == f.CloSlot {
    				reg = cloReg
    			} else {
    				reg = ObjRegForAbiReg(r, f.Config)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/time/format.go

    // For example "15:04:05,000" or "15:04:05.000" formats or parses with
    // millisecond precision.
    //
    // Some valid layouts are invalid time values for time.Parse, due to formats
    // such as _ for space padding and Z for zone information.
    const (
    	Layout      = "01/02 03:04:05PM '06 -0700" // The reference time, in numerical order.
    	ANSIC       = "Mon Jan _2 15:04:05 2006"
    	UnixDate    = "Mon Jan _2 15:04:05 MST 2006"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. cmd/encryption-v1.go

    	SSEIVSize = 32 // 32 bytes
    
    	// SSEDAREPackageBlockSize - SSE dare package block size.
    	SSEDAREPackageBlockSize = 64 * 1024 // 64KiB bytes
    
    	// SSEDAREPackageMetaSize - SSE dare package meta padding bytes.
    	SSEDAREPackageMetaSize = 32 // 32 bytes
    
    )
    
    // KMSKeyID returns in AWS compatible KMS KeyID() format.
    func (o *ObjectInfo) KMSKeyID() string { return kmsKeyIDFromMetadata(o.UserDefined) }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. cmd/object-api-utils.go

    func newS2CompressReader(r io.Reader, on int64, encrypted bool) (rc io.ReadCloser, idx func() []byte) {
    	pr, pw := io.Pipe()
    	// Copy input to compressor
    	opts := compressOpts
    	if encrypted {
    		// The values used for padding are not a security concern,
    		// but we choose pseudo-random numbers instead of just zeros.
    		rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    	case size == 0:
    		buffer = make([]byte, 1) // Allocate at least a byte to reach EOF
    	case size == -1:
    		if size := data.ActualSize(); size > 0 && size < fi.Erasure.BlockSize {
    			// Account for padding and forced compression overhead and encryption.
    			buffer = make([]byte, data.ActualSize()+256+32+32, data.ActualSize()*2+512)
    		} else {
    			buffer = globalBytePoolCap.Load().Get()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. RELEASE.md

                layer. These padding masks will be combined with any
                `attention_mask` passed in directly when calling the layer. This can
                be used with
                [`tf.keras.layers.Embedding`](https://www.tensorflow.org/api_docs/python/tf/keras/layers/Embedding)
                with `mask_zero=True` to automatically infer a correct padding mask.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top