Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for support (0.21 sec)

  1. tensorflow/BUILD

    config_setting(
        name = "stackdriver_support",
        define_values = {"stackdriver_support": "true"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "with_xla_support",
        define_values = {"with_xla_support": "true"},
        visibility = ["//visibility:public"],
    )
    
    # By default, XLA GPU is compiled into tensorflow when building with
    # --config=cuda even when `with_xla_support` is false. The config setting
    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

                "//tensorflow/core/lib/llvm_rtti",
                "@com_google_absl//absl/types:variant",
            ],
        }) + select({
            "//tensorflow:with_xla_support": [
                "//tensorflow/compiler/jit",
                "//tensorflow/compiler/jit:xla_device",
                "//tensorflow/compiler/tf2xla:xla_compiler",
            ],
            "//conditions:default": [],
        }) + [
    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/experimental/filesystem/BUILD

        srcs = ["modular_filesystem_test.cc"],
        linkopts = ["-ldl"],
        tags = [
            "manual",  # Requires DSOs as arguments, eventual setup
            "notap",  # b/139060984, requires implementing modular support for Google filesystem
        ],
        deps = [
            ":modular_filesystem",
            "//tensorflow/core:framework_internal",
            "//tensorflow/core/lib/io:path",
            "//tensorflow/core/platform:env",
    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)
  4. tensorflow/c/BUILD

            "//tensorflow/core/platform:tstring",
            "@com_google_absl//absl/status",
            "@local_xla//xla/tsl/c:tsl_status",
        ] + select({
            "//tensorflow:with_xla_support": [
                "//tensorflow/compiler/jit",
                "//tensorflow/compiler/tf2xla:xla_compiler",
            ],
            "//conditions:default": [],
        }) + if_tensorrt([
    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)
Back to top