Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Tpaddings (0.29 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    margin-remove-right\@xl{margin-right:0!important}}.uk-padding{padding:30px}@media (min-width:1200px){.uk-padding{padding:40px}}.uk-padding-small{padding:15px}.uk-padding-large{padding:30px}@media (min-width:1200px){.uk-padding-large{padding:70px}}.uk-padding-remove{padding:0!important}.uk-padding-remove-top{padding-top:0!important}.uk-padding-remove-bottom{padding-bottom:0!important}.uk-padding-remove-left{padding-left:0!important}.uk-padding-remove-right{padding-right:0!important}.uk-padding-re...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           %[[VAL_10:.*]] = "tf.Conv2D"(%[[VAL_5]], %[[VAL_9]]) <{data_format = "NHWC", dilations = [1, 1, 1, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 1, 1], use_cudnn_on_gpu = true}> : (tensor<16x32x1x256xbf16>, tensor<1x1x256x256xbf16>) -> tensor<16x32x1x256xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %padding = "tf.Const"() { value = dense<[[1, 2]]> : tensor<1x2xi64> } : () -> tensor<1x2xi64>
      // CHECK: "mhlo.pad"(%arg0, %arg1) <{
      // CHECK-SAME: edge_padding_high = dense<2> : tensor<1xi64>,
      // CHECK-SAME: edge_padding_low = dense<1> : tensor<1xi64>,
      // CHECK-SAME: interior_padding = dense<0> : tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. 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)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    le-down":{"object-fit":"scale-down"}})},objectPosition:P("objectPosition",[["object",["object-position"]]]),padding:P("padding",[["p",["padding"]],[["px",["padding-left","padding-right"]],["py",["padding-top","padding-bottom"]]],[["ps",["padding-inline-start"]],["pe",["padding-inline-end"]],["pt",["padding-top"]],["pr",["padding-right"]],["pb",["padding-bottom"]],["pl",["padding-left"]]]]),textAlign:({addUtilities:i})=>{i({".text-left":{"text-align":"left"},".text-center":{"text-align":"center"}...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/net/http/h2_bundle.go

    	data []byte
    }
    
    func (f *http2DataFrame) StreamEnded() bool {
    	return f.http2FrameHeader.Flags.Has(http2FlagDataEndStream)
    }
    
    // Data returns the frame's data octets, not including any padding
    // size byte or padding suffix bytes.
    // The caller must not retain the returned memory past the next
    // call to ReadFrame.
    func (f *http2DataFrame) Data() []byte {
    	f.checkValid()
    	return f.data
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Capt uint64
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Drop uint64
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Padding [13]uint64
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Recv uint64
    pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct
    pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct, Sec int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    Tag           = string_lit .
    </pre>
    
    <pre>
    // An empty struct.
    struct {}
    
    // A struct with 6 fields.
    struct {
    	x, y int
    	u float32
    	_ float32  // padding
    	A *[]int
    	F func()
    }
    </pre>
    
    <p>
    A field declared with a type but no explicit field name is called an <i>embedded field</i>.
    An embedded field must be specified as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top