Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for files (0.17 sec)

  1. tensorflow/c/BUILD

            "tf_datatype.h",
            "tf_file_statistics.h",
            "tf_status.h",
            "tf_tensor.h",
            "tf_tstring.h",
        ],
        copts = tf_copts(),
        visibility = ["//visibility:public"],
        deps = [
            ":c_api_internal",
            ":c_api_macros_hdrs",
            ":c_api_no_xla",
            ":tf_attrtype",
            ":tf_buffer",
            ":tf_file_statistics",
            ":tf_status_helper",
    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. BUILD

    exports_files([
        "configure",
        "configure.py",
        "ACKNOWLEDGEMENTS",
        "LICENSE",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Jan 18 19:07:07 GMT 2021
    - 95 bytes
    - Viewed (0)
  3. tensorflow/BUILD

        get_compat_files(TENSORFLOW_API_INIT_FILES_V1, 1) + get_nested_compat_files([
            1,
            2,
        ])
    )
    
    TENSORFLOW_API_INIT_FILES_V1 = (
        TENSORFLOW_API_INIT_FILES_V1 +
        get_compat_files(TENSORFLOW_API_INIT_FILES, 2) +
        get_compat_files(TENSORFLOW_API_INIT_FILES_V1, 1) + get_nested_compat_files([
            1,
            2,
        ])
    )
    # copybara:comment_end
    
    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)
  4. tensorflow/c/eager/parallel_device/BUILD

        licenses = ["notice"],
    )
    
    # Currently pybind extension shared objects must use only C API headers since
    # the C API has static initializers duplicated in the Python bindings. So we
    # need a second rule that omits .cc files, in
    # tensorflow/python:_pywrap_parallel_device.
    filegroup(
        name = "lib_headers",
        srcs = ["parallel_device_lib.h"],
    )
    
    filegroup(
        name = "lib_sources",
        srcs = ["parallel_device_lib.cc"],
    )
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:19:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

        hdrs = ["posix_filesystem_helper.h"],
        deps = [":copy_file"],
    )
    
    # On Linux, we can copy files faster using `sendfile`. But not elsewhere.
    # Hence, this private library to select which implementation to use.
    cc_library(
        name = "copy_file",
        srcs = select({
            "//tensorflow:linux_x86_64": ["copy_file_linux.cc"],
            "//conditions:default": ["copy_file_portable.cc"],
        }),
        hdrs = ["copy_file.h"],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
Back to top