Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for necessarily (0.2 sec)

  1. RELEASE.md

    `tensorflow` pip package has a new, optional installation method for Linux that installs necessary Nvidia CUDA libraries through pip. As long as the Nvidia driver is already installed on the system, you may now run `pip install tensorflow[and-cuda]` to install TensorFlow's Nvidia CUDA library dependencies in the Python environment. Aside from the Nvidia driver, no other pre-existing Nvidia CUDA packages are necessary.
    
    *   Enable JIT-compiled i64-indexed kernels on GPU for large tensors with...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

                            entries to status populated with their ControllerName are cleaned up when they are no
                            longer necessary.
                          maxLength: 253
                          minLength: 1
                          pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*\/[A-Za-z0-9\/\-._~%!$&'()*+,;=:]+$
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apps__v1_openapi.json

          "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": {
            "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.",
            "properties": {
              "rollingUpdate": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

            "properties": {
              "nodeName": {
                "description": "NodeName is the name of the node providing the necessary resources if the resources are local to a node.",
                "type": "string"
              },
              "results": {
                "description": "Results lists all allocated driver resources.",
                "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    In the above example, the input Tensor with the shape of `[1, 3]`
    is broadcasted to output Tensor with shape of `[2, 3]`.
    
    When broadcasting, if a tensor has fewer axes than necessary its shape is
    padded on the left with ones. So this gives the same result as the previous
    example:
    
    >>> x = tf.constant([1, 2, 3])   # Shape (3,)
    >>> y = tf.broadcast_to(x, [2, 3])
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top