Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kasper (0.2 sec)

  1. tensorflow/BUILD

            ":with_tpu_support_define",
            ":with_tpu_support_flag",
        ],
        visibility = ["//visibility:public"],
    )
    
    # Specifies via a config setting if this is a mobile build or not, makes
    # it easier to combine settings later.
    selects.config_setting_group(
        name = "mobile",
        match_any = [
            ":android",
            ":chromiumos",
    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/experimental/filesystem/plugins/posix/BUILD

    cc_library(
        name = "posix_filesystem_helper",
        srcs = ["posix_filesystem_helper.cc"],
        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"],
    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