Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Us (0.02 sec)

  1. tensorflow/BUILD

        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
    # here allows us to override the behavior if needed.
    config_setting(
        name = "no_xla_deps_in_cuda",
        define_values = {"no_xla_deps_in_cuda": "true"},
        visibility = ["//visibility:public"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. .bazelrc

    build:windows --host_copt=-DWIN32_LEAN_AND_MEAN
    build:windows --copt=-DNOGDI
    build:windows --host_copt=-DNOGDI
    
    # MSVC (Windows): Standards-conformant preprocessor mode
    # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview
    build:windows --copt=/Zc:preprocessor
    build:windows --host_copt=/Zc:preprocessor
    
    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top