Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Conlay (0.24 sec)

  1. tensorflow/BUILD

    )
    
    # This flag disables all google production dependencies, intended for
    # applications run with non-prod environment.
    # TODO(timshen): Currently this option only disables some dependencies.
    # See b/122528503.
    # copybara:uncomment_begin(google-only)
    # bool_flag(
    #     name = "tf_no_prod_deps",
    #     build_setting_default = False,
    # )
    #
    # config_setting(
    #     name = "no_prod_deps_define",
    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)
  2. tensorflow/c/eager/BUILD

        ],
    )
    
    cc_header_only_library(
        name = "tfe_tensorhandle_internal_hdrs_only",
        extra_deps = [
            "@com_google_absl//absl/strings",
        ],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            ":tfe_tensorhandle_internal",
        ],
    )
    
    cc_header_only_library(
        name = "tfe_cancellationmanager_internal_hdrs_only",
        extra_deps = [
    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)
  3. tensorflow/c/eager/parallel_device/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        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",
    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)
  4. tensorflow/c/experimental/filesystem/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # This is only for plugins
    cc_library(
        name = "filesystem_interface",
        hdrs = ["filesystem_interface.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/c:tf_file_statistics",
    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/BUILD

        deps = [
            ":c_api_macros_hdrs",
            ":tf_attrtype",
            ":tf_buffer_hdrs",
            ":tf_datatype_hdrs",
            ":tf_status_headers",
            ":tf_tensor_hdrs",
            # TODO: Only include tf_tstring_hdrs. Don't expose the implementation of TF_TString to API
            # users.
            ":tf_tstring",
            "//tensorflow/core:protos_all_cc",
        ],
    )
    
    tf_cuda_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)
  6. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

            "//tensorflow/core/platform:status",
            "@com_google_absl//absl/log",
        ],
        alwayslink = 1,
    )
    
    # Library implementing helper functionality, so that the above only contains
    # the API implementation for modular filesystems.
    cc_library(
        name = "posix_filesystem_helper",
        srcs = ["posix_filesystem_helper.cc"],
        hdrs = ["posix_filesystem_helper.h"],
        deps = [":copy_file"],
    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