Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for NVIDIA (0.12 sec)

  1. cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: nvidia-gpu-device-plugin
      namespace: kube-system
      labels:
        k8s-app: nvidia-gpu-device-plugin
        addonmanager.kubernetes.io/mode: EnsureExists
    spec:
      selector:
        matchLabels:
          k8s-app: nvidia-gpu-device-plugin
      template:
        metadata:
          labels:
            k8s-app: nvidia-gpu-device-plugin
        spec:
          priorityClassName: system-node-critical
          affinity:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/cuda.packages.txt

    # CuDNN: https://docs.nvidia.com/deeplearning/sdk/cudnn-install/index.html#ubuntu-network-installation
    libcudnn9-dev-cuda-12=9.1.1.17-1
    libcudnn9-cuda-12=9.1.1.17-1
    
    # This can be removed once NVIDIA publishes a cuda-12.3.2 Docker image.
    # For now it ensures that we install at least version 12.3.107 of PTXAS,
    # since 12.3.103 has a bug.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 24 17:22:37 UTC 2024
    - 366 bytes
    - Viewed (0)
  3. .github/workflows/trusted_partners.js

        assignees = apple_silicon_assignees;
      if (lowercased_title.includes('tf-trt') && domain.includes('nvidia.com')) {
        assignees.push(
            'DEKHTIARJonathan', 'meena-at-work', 'nluehr', 'pjannaty', 'poulsbo');
      } else if (
          lowercased_title.includes('nvidia') && domain.includes('nvidia.com')) {
        if (lowercased_title.includes('jax')) {
          assignees.push('hawkinsp', 'yashk2810', 'skye');
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 07 13:52:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/BUILD

        srcs = [
            "device_compiler_serialize_test.cc",
        ],
        tags = [
            "config-cuda-only",
            "no_oss",  # This test only runs with GPU.
            "requires-gpu-nvidia",
            "xla",
        ],
        deps = [
            ":device_compiler_test_helper",
            "//tensorflow/compiler/jit:compilation_passes",
            "//tensorflow/compiler/jit:flags",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. ci/official/README.md

    #   container and start fresh, run "docker rm -f tf". Removing the container
    #   destroys some temporary bazel data and causes longer builds.
    #
    #   You will need the NVIDIA Container Toolkit for GPU testing:
    #   https://github.com/NVIDIA/nvidia-container-toolkit
    #
    #   Note: if you interrupt a bazel command on docker (ctrl-c), you
    #   will need to run `docker exec tf pkill bazel` to quit bazel.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. ci/official/envs/linux_arm64

    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_arm64
    # Note: this is not set to "--cpu", because that changes the package name
    # to tensorflow_cpu. These ARM builds are supposed to have the name "tensorflow"
    # despite lacking Nvidia CUDA support.
    TFCI_BUILD_PIP_PACKAGE_ARGS="--repo_env=WHEEL_NAME=tensorflow"
    TFCI_DOCKER_ENABLE=1
    TFCI_DOCKER_IMAGE=us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/build-arm64:tf-2-16-multi-python
    TFCI_DOCKER_PULL_ENABLE=1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 16:53:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. ci/official/libtensorflow.sh

    # ==============================================================================
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Record GPU count and CUDA version status
    if [[ "$TFCI_NVIDIA_SMI_ENABLE" == 1 ]]; then
      tfrun nvidia-smi
    fi
    
    # Update the version numbers for Nightly only
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      tfrun python3 tensorflow/tools/ci_build/update_version.py --nightly
    fi
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    					},
    				},
    			},
    			{
    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    						v1.ResourceCPU:    resource.MustParse("2000m"),
    						v1.ResourceMemory: resource.MustParse("3000"),
    						"nvidia.com/gpu":  resource.MustParse("3"),
    					},
    				},
    			},
    		},
    		NodeName: "node1",
    	}
    	labels1 := map[string]string{
    		"foo": "bar",
    		"baz": "blah",
    	}
    	labels2 := map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. ci/official/wheel.sh

    # ==============================================================================
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Record GPU count and CUDA version status
    if [[ "$TFCI_NVIDIA_SMI_ENABLE" == 1 ]]; then
      tfrun nvidia-smi
    fi
    
    # Update the version numbers for Nightly only
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      tfrun python3 tensorflow/tools/ci_build/update_version.py --nightly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.bashrc

    [ -z "$PS1" ] && return
    
    # Set up attractive prompt
    export PS1="\[\e[31m\]tf-docker\[\e[m\] \[\e[33m\]\w\[\e[m\] > "
    export TERM=xterm-256color
    alias grep="grep --color=auto"
    alias ls="ls --color=auto"
    # Fix nvidia-docker
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 988 bytes
    - Viewed (0)
Back to top