Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Oss (0.23 sec)

  1. tensorflow/BUILD

    #
    # For non-configurable distinction between OSS and Google builds, see
    # `if_oss()` and `if_google()` macros in tensorflow.bzl.
    config_setting(
        name = "oss",
        flag_values = {":oss_setting": "True"},
        visibility = ["//visibility:public"],
    )
    
    # Non-configurable setting to indicate open source build.
    bool_setting(
        name = "oss_setting",
        build_setting_default = if_oss(True, False),
    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

        size = "small",
        srcs = [
            "c_api_distributed_test.cc",
        ],
        # TODO(b/136478427): Figure out how to correctly shut the server down
        args = ["--heap_check="],
        tags = [
            "no_oss",  # TODO(b/200848572)
            "no_windows",
        ],
        deps = [
            ":c_api",
            ":c_api_experimental",
            ":c_api_internal",
            ":c_api_test_util",
            ":tfe_tensorhandle_internal",
    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)
Back to top