Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tf_nightly (0.1 sec)

  1. ci/official/wheel.sh

    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      tfrun python3 tensorflow/tools/ci_build/update_version.py --nightly
      # replace tensorflow to tf_nightly in the wheel name
      export TFCI_BUILD_PIP_PACKAGE_ARGS="$(echo $TFCI_BUILD_PIP_PACKAGE_ARGS | sed 's/tensorflow/tf_nightly/')"
    fi
    
    # TODO(b/361369076) Remove the following block after TF NumPy 1 is dropped
    # Move hermetic requirement lock files for NumPy 1 to the root
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 14 23:45:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. ci/official/envs/installer_wheel_tensorflow

    # limitations under the License.
    # ==============================================================================
    TFCI_INSTALLER_WHL_ENABLE=1
    TFCI_INSTALLER_WHL_PROJECT_NAME="tensorflow"
    TFCI_INSTALLER_WHL_NIGHTLY_PROJECT_NAME="tf_nightly"
    # Supported wheel tags are stored as strings in TFCI_INSTALLER_WHL_TAGS
    # separated by spaces.
    TFCI_INSTALLER_WHL_TAGS="cp39-cp39-win_amd64 cp310-cp310-win_amd64 cp311-cp311-win_amd64 cp312-cp312-win_amd64"
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Jul 26 14:26:18 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. WORKSPACE

    python_init_repositories(
        default_python_version = "system",
        local_wheel_dist_folder = "dist",
        local_wheel_inclusion_list = [
            "tensorflow*",
            "tf_nightly*",
        ],
        local_wheel_workspaces = ["//:WORKSPACE"],
        requirements = {
            "3.9": "//:requirements_lock_3_9.txt",
            "3.10": "//:requirements_lock_3_10.txt",
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Oct 11 16:49:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. ci/official/installer_wheel.sh

    # Get the name of the pure python wheel that was built. This should
    # resolve to either
    # 1. tensorflow-a.b.c-py3-none-any.whl  or, for nightly builds,
    # 2. tf_nightly-a.b.c.devYYYYMMDD-py3-none-any.whl
    pure_python_whl=$(ls "$TFCI_OUTPUT_DIR"/*py3-none-any*)
    pure_python_whl=$(basename "${pure_python_whl}")
    
    # Extract the package name from the wheel name. That is, extract every character
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 25 17:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. .github/workflows/arm-ci-extended.yml

            shell: bash
            run: |
              is_nightly=0 && tf_project_name='tf_ci_ext' && ${{ github.event_name == 'schedule' }} && is_nightly=1 && tf_project_name='tf_nightly_ci_ext'
              CI_DOCKER_BUILD_EXTRA_PARAMS="--build-arg py_major_minor_version=${{ matrix.pyver }} --build-arg is_nightly=${is_nightly} --build-arg tf_project_name=${tf_project_name}" \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. .github/workflows/arm-ci-extended-cpp.yml

          - name: Build binary and run C++ tests
            shell: bash
            run: |
              is_nightly=0 && tf_project_name='tf_ci_ext_c' && ${{ github.event_name == 'schedule' }} && is_nightly=1 && tf_project_name='tf_nightly_ci_ext_c'
              CI_DOCKER_BUILD_EXTRA_PARAMS="--build-arg py_major_minor_version=${{ matrix.pyver }} --build-arg is_nightly=${is_nightly} --build-arg tf_project_name=${tf_project_name}" \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. .github/workflows/arm-cd.yml

            shell: bash
            run: |
              is_nightly=0 && tf_project_name='tensorflow_cpu_aws' && ${{ github.event_name == 'schedule' }} && is_nightly=1 && tf_project_name='tf_nightly_cpu_aws'
              echo "PyPI project name:" $tf_project_name
              CI_DOCKER_BUILD_EXTRA_PARAMS="--build-arg py_major_minor_version=${{ matrix.pyver }} --build-arg is_nightly=${is_nightly} --build-arg tf_project_name=${tf_project_name}" \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. .github/workflows/arm-ci.yml

          - name: Build binary and run python tests
            shell: bash
            run: |
              CI_DOCKER_BUILD_EXTRA_PARAMS="--pull --build-arg py_major_minor_version=${{ matrix.pyver }} --build-arg is_nightly=1 --build-arg tf_project_name=tf_nightly_ci" \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top