Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for loaders (0.28 sec)

  1. tensorflow/c/BUILD

        srcs = [
            "safe_ptr.cc",
            "//tensorflow/c/eager:headers",
        ],
        hdrs = ["safe_ptr.h"],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            ":c_api_internal",
        ],
    )
    
    # -----------------------------------------------------------------------------
    # Public targets
    
    filegroup(
        name = "headers",
        srcs = [
            "c_api.h",
            "c_api_experimental.h",
    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)
  2. tensorflow/api_template_v1.__init__.py

    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
        name="layers",
        mode="v1")
    if _tf_uses_legacy_keras:
      _module_dir = _module_util.get_parent_dir_for_name(
          "tf_keras.api._v1.keras.__internal__.legacy.layers")
    else:
      _module_dir = _module_util.get_parent_dir_for_name(
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/setup.python.sh

      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    # Python 3.10 include headers fix:
    # sysconfig.get_path('include') incorrectly points to /usr/local/include/python
    # map /usr/include/python3.10 to /usr/local/include/python3.10
    if [[ ! -f "/usr/local/include/$VERSION" ]]; then
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/BUILD

    cc_library(
        name = "grappler_hdrs",
        hdrs = ["grappler.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api",
            "//tensorflow/c:c_api_macros",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "grappler",
        srcs = ["grappler.cc"],
        hdrs = [
            "grappler.h",
            "grappler_internal.h",
        ],
        visibility = ["//tensorflow:internal"],
    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)
  5. WORKSPACE

    NUMPY_ANNOTATIONS = {
        "numpy": package_annotation(
            additive_build_content = """\
    filegroup(
        name = "includes",
        srcs = glob(["site-packages/numpy/core/include/**/*.h"]),
    )
    cc_library(
        name = "numpy_headers",
        hdrs = [":includes"],
        strip_include_prefix="site-packages/numpy/core/include/",
    )
    """,
        ),
    }
    
    pip_parse(
        name = "pypi",
        annotations = NUMPY_ANNOTATIONS,
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Apr 05 22:27:48 GMT 2024
    - 3K bytes
    - Viewed (2)
  6. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

      echo "Use 'devtoolset-9' to build a manylinux2014 compatible toolchain"
      exit 1
      ;;
    esac
    
    mkdir -p "${TARGET}"
    
    mkdir -p ${TARGET}/usr/include
    
    # Put the current kernel headers from ubuntu in place.
    ln -s "/usr/include/linux" "${TARGET}/usr/include/linux"
    ln -s "/usr/include/asm-generic" "${TARGET}/usr/include/asm-generic"
    ln -s "/usr/include/aarch64-linux-gnu/asm" "${TARGET}/usr/include/asm"
    
    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)
  7. tensorflow/BUILD

            "tf_exported_symbols.lds",
            "tf_private_symbols.lds",
        ],
    )
    
    genrule(
        name = "install_headers",
        srcs = [
            "//tensorflow/c:headers",
            "//tensorflow/c/eager:headers",
            "//tensorflow/cc:headers",
            "//tensorflow/core:headers",
            "@local_xla//xla/stream_executor:stream_executor_install_hdrs",
        ],
        outs = ["include"],
        cmd = """
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  8. tensorflow/c/eager/BUILD

            "//tensorflow/core/config:flags",
        ],
    )
    
    filegroup(
        name = "headers",
        srcs = [
            "c_api.h",
            "c_api_experimental.h",
            "dlpack.h",
        ],
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    filegroup(
        name = "pywrap_headers_monitoring_reader",
        srcs = [
            "c_api_experimental_reader.h",
    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)
  9. tensorflow/c/c_api_experimental_test.cc

    #include "tensorflow/c/eager/c_api_test_util.h"
    #include "tensorflow/core/lib/io/path.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/tensorflow_server.pb.h"
    
    namespace tensorflow {
    namespace {
    
    TEST(CAPI_EXPERIMENTAL, GetServerDefTest) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 17 22:27:52 GMT 2023
    - 13.1K bytes
    - Viewed (1)
  10. LICENSE

       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
    
       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
       ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Nov 29 17:31:56 GMT 2021
    - 13.3K bytes
    - Viewed (0)
Back to top