Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for containers (0.18 sec)

  1. .github/workflows/arm-ci-extended-cpp.yml

        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
              docker image prune -af
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 07 17:41:21 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  2. .github/workflows/arm-cd.yml

        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 10:24:16 GMT 2024
    - 3K bytes
    - Viewed (1)
  3. .github/workflows/osv-scanner-scheduled.yml

            --lockfile=requirements.txt:./requirements_lock_3_12.txt
            --lockfile=requirements.txt:./ci/official/containers/linux_arm64/devel.requirements.txt
            --lockfile=requirements.txt:./ci/official/containers/linux_arm64/jax.requirements.txt
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 06 17:09:49 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. .github/workflows/arm-ci.yml

        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 07 17:41:21 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. ci/official/envs/linux_arm64

    TFCI_BUILD_PIP_PACKAGE_ARGS="--repo_env=WHEEL_NAME=tensorflow"
    TFCI_DOCKER_ENABLE=1
    TFCI_DOCKER_IMAGE=gcr.io/tensorflow-sigs/build-arm64:tf-2-16-multi-python
    TFCI_DOCKER_PULL_ENABLE=1
    TFCI_DOCKER_REBUILD_ARGS="--target=tf ci/official/containers/linux_arm64"
    TFCI_INDEX_HTML_ENABLE=1
    TFCI_LIB_SUFFIX="-cpu-linux-arm64"
    TFCI_OUTPUT_DIR=build_output
    TFCI_WHL_AUDIT_ENABLE=1
    TFCI_WHL_AUDIT_PLAT=manylinux2014_aarch64
    TFCI_WHL_BAZEL_TEST_ENABLE=1
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 23:12:40 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  6. ci/official/README.md

    #   TF uses hub.docker.com/r/tensorflow/build containers for CI,
    #   and scripts on Linux create a persistent container called "tf"
    #   which mounts your TensorFlow directory into the container.
    #
    #   Important: because the container is persistent, you cannot change TFCI
    #   variables in between script executions. To forcibly remove the
    #   container and start fresh, run "docker rm -f tf". Removing the container
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  7. .github/workflows/sigbuild-docker-branch.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    name: Upload SIG Build docker containers modified for release branches
    
    on:
      workflow_dispatch:
      push:
        paths:
          - '.github/workflows/sigbuild-docker-branch.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Oct 23 18:43:43 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api.h

    // Some TF ops need a step container to be set to limit the lifetime of some
    // resources (mostly TensorArray and Stack, used in while loop gradients in
    // graph mode). Calling this on a context tells it to start a step.
    TF_CAPI_EXPORT extern void TFE_ContextStartStep(TFE_Context* ctx);
    
    // Ends a step. When there is no active step (that is, every started step has
    // been ended) step containers will be cleared. Note: it is not safe to call
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 22.8K bytes
    - Viewed (1)
  9. tensorflow/c/c_api.cc

    static void TF_Reset_Helper(const TF_SessionOptions* opt,
                                const char** containers, int ncontainers,
                                TF_Status* status) {
      std::vector<string> container_names(ncontainers);
      for (int i = 0; i < ncontainers; ++i) {
        container_names[i] = containers[i];
      }
    
      status->status = Reset(opt->options, container_names);
    }
    
    extern "C" {
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    -endif
    -
     LDLIBS-test-container = $(libsupport)
     
     others += test-container
    @@ -182,9 +175,6 @@ others-noinstall += test-container
     others += shell-container echo-container true-container
     others-noinstall += shell-container echo-container true-container
     
    -others += $(LINKS_DSO_PROGRAM)
    -others-noinstall += $(LINKS_DSO_PROGRAM)
    -
     $(objpfx)test-container : $(libsupport)
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 8.9K bytes
    - Viewed (0)
Back to top