Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for We (0.16 sec)

  1. tensorflow/BUILD

    )
    
    config_setting(
        name = "force_rtti",
        define_values = {
            "tf_force_rtti": "true",
        },
        visibility = ["//visibility:public"],
    )
    
    # Config setting for determining if we are building for Android.
    config_setting(
        name = "android",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:android"],
            [],
        ),
        values = if_oss(
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  2. 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",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:19:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

            "//tensorflow/c:tf_status",
            "//tensorflow/c/experimental/filesystem:filesystem_interface",
        ],
    )
    
    # Since building pip package and API tests require a filesystem, we provide a
    # static registration target that they should link against.
    cc_library(
        name = "posix_filesystem_static",
        srcs = ["posix_filesystem_static.cc"],
        visibility = ["//visibility:public"],
        deps = [
    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)
  4. tensorflow/c/experimental/filesystem/BUILD

            "modular_filesystem_registration.cc",
        ],
        hdrs = [
            "modular_filesystem.h",
            "modular_filesystem_registration.h",
        ],
        # TODO(b/139060984): Visibility should be more restrictive once we
        # convert to modular filesystems everywhere
        visibility = ["//visibility:public"],
        deps = [
            ":filesystem_interface",
            "//tensorflow/c:tf_status_helper",
            "//tensorflow/c:tf_status_internal",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/c/BUILD

            "//conditions:default": [],
        }),
        tags = [
            "no_cuda_asan",  # TODO(b/181771536)
            "no_windows",  # TODO(b/155444728)
        ],
        # We must ensure that the dependencies can be dynamically linked since
        # the shared library must be able to use core:framework.
        deps = [
            ":c_api",
            ":c_api_internal",
            ":c_test_util",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
Back to top