Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Sizes (0.21 sec)

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

      // CHECK: return %[[RESULT]] : tensor<2xi32>
      %starts = "tf.Const"() {value = dense<[1]> : tensor<1xi64>} : () -> (tensor<1xi64>)
      %sizes = "tf.Const"() {value = dense<[2]> : tensor<1xi64>} : () -> (tensor<1xi64>)
      %0 = "tf.Slice"(%arg0, %starts, %sizes) : (tensor<4xi32>, tensor<1xi64>, tensor<1xi64>) -> tensor<2xi32>
      func.return %0 : tensor<2xi32>
    }
    
    // -----
    
    // CHECK-LABEL: slice_i32_consts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    tensorflow::TensorShape ToTensorShape(llvm::ArrayRef<T> sizes) {
      return tensorflow::TensorShape(
          llvm::SmallVector<int64_t, num_dims>(sizes.begin(), sizes.end()));
    }
    
    template <typename T, int num_dims>
    tensorflow::TensorShape ToTensorShape(
        llvm::iterator_range<DenseElementsAttr::ElementIterator<T>> sizes) {
      return tensorflow::TensorShape(
          llvm::SmallVector<int64_t, num_dims>(sizes.begin(), sizes.end()));
    }
    
    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. src/net/http/h2_bundle.go

    		n = cl + 1
    	}
    	if n < 1 {
    		return 1
    	}
    	return int(n) // doesn't truncate; max is 512K
    }
    
    // Seven bufPools manage different frame sizes. This helps to avoid scenarios where long-running
    // streaming requests using small frame sizes occupy large buffers initially allocated for prior
    // requests needing big buffers. The size ranges are as follows:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <a href="https://en.wikipedia.org/wiki/Two's_complement">two's complement arithmetic</a>.
    </p>
    
    <p>
    There is also a set of predeclared integer types with implementation-specific sizes:
    </p>
    
    <pre class="grammar">
    uint     either 32 or 64 bits
    int      same size as uint
    uintptr  an unsigned integer large enough to store the uninterpreted bits of a pointer value
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

      Controller Manager flags for the node IPAM controller have slightly changed:
      1. When configuring a dual-stack cluster, the user must specify both `--node-cidr-mask-size-ipv4` and `--node-cidr-mask-size-ipv6` to set the per-node IP mask sizes, instead of the previous `--node-cidr-mask-size` flag.
      2. The `--node-cidr-mask-size` flag is mutually exclusive with `--node-cidr-mask-size-ipv4` and `--node-cidr-mask-size-ipv6`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    - The `HugePageStorageMediumSize` feature graduates to GA and unconditionally enabled. Allowing unconditional usage of multiple sizes huge page resources on a container level. ([#99144](https://github.com/kubernetes/kubernetes/pull/99144), [@bart0sh](https://github.com/bart0sh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top