Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Wain (0.2 sec)

  1. ci/official/containers/linux_arm64/setup.sources.sh

    # More Python versions: Deadsnakes
    deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    
    # LLVM/Clang 17 repository
    deb http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main
    deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. ci/official/utilities/cleanup_summary.sh

    # limitations under the License.
    # ==============================================================================
    
    set -euxo pipefail
    
    function resultstore_extract_fallback {
      # In case the main script fails somehow.
      cat <<EOF
    IMPORTANT: For bazel invocations that uploaded to ResultStore (e.g. RBE), you
    can view more detailed results that are probably easier to read than this log.
    Try the links below:
    EOF
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/c/BUILD

            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_cc_test(
        name = "while_loop_test",
        size = "medium",
        srcs = ["while_loop_test.cc"],
        deps = [
            ":c_api",
            ":c_test_util",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_custom_op_library(
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/BUILD

        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/c:tf_file_statistics",
            "//tensorflow/c:tf_status",
        ],
    )
    
    # Core TensorFlow depends on this, will be included in main library
    cc_library(
        name = "modular_filesystem",
        srcs = [
            "modular_filesystem.cc",
            "modular_filesystem_registration.cc",
        ],
        hdrs = [
            "modular_filesystem.h",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/grappler/BUILD

            ":grappler",
            "//tensorflow/c:c_api_internal",
            "//tensorflow/c:tf_buffer_internal",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler/clusters:single_machine",
            "//tensorflow/core/grappler/costs:graph_properties",
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/repack_libtensorflow.sh

      tmp_dir=$(mktemp -d)
      cp "${src_jar}" "${tmp_dir}/orig.jar"
      pushd "${tmp_dir}"
      # Extract any src/ files
      jar -xf "${tmp_dir}/orig.jar" src/
      # Extract any org/ files under src/main/java
      (mkdir -p src/main/java && cd src/main/java && jar -xf "${tmp_dir}/orig.jar" org/)
      # Repackage src/
      jar -cMf "${tmp_dir}/new.jar" src
      popd
      cp "${tmp_dir}/new.jar" "${dest_jar}"
      rm -rf "${tmp_dir}"
    }
    DIR=$1
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    ***NOTE***: Only original source code from you and other people that have signed the CLA can be accepted into the main repository.
    
    ### Contributing code
    
    If you have improvements to TensorFlow, send us your pull requests! For those
    just getting started, GitHub has a
    [how-to](https://help.github.com/articles/using-pull-requests/).
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    # the `VERSION` parameter
      # Download binary libstdc++ 4.8 shared library release
    wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "http://old-releases.ubuntu.com/ubuntu/pool/main/g/gcc-4.8/libstdc++6_4.8.1-10ubuntu8_arm64.deb" && \
        unar "libstdc++6_4.8.1-10ubuntu8_arm64.deb" && \
        tar -C "${TARGET}" -xvzf "libstdc++6_4.8.1-10ubuntu8_arm64/data.tar.gz" "./usr/lib/aarch64-linux-gnu/libstdc++.so.6.0.18"  && \
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 6.1K bytes
    - Viewed (1)
  9. tensorflow/c/eager/BUILD

            "//tensorflow/compiler/mlir/tensorflow/c:mlir_c_api_registration",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/lib/llvm_rtti",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/types:span",
        ],
    )
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  10. ci/official/pycpp.sh

    fi
    
    # Note: the profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 06 17:29:44 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top