Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for excludes (0.22 sec)

  1. tensorflow/BUILD

    # the shared library, only export the core TF API functions to avoid
    # causing library conflicts (e.g., those reported in github issue 1924).
    # On Linux, tell the linker (-Wl,<option>) to use a version script that
    # excludes all but a subset of function names.
    # On MacOS, the linker does not support version_script, but has an
    # an "-exported_symbols_list" command.  -z defs disallows undefined
    # symbols in object files.
    
    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/BUILD

    # replaced by TF Lite)
    filegroup(
        name = "srcs",
        srcs = glob(
            [
                "*.cc",
                "*.h",
            ],
            exclude = [
                "c_api_experimental.cc",
                "c_api_experimental_reader.cc",
                "c_api_experimental_reader.h",
                "tfe_monitoring_reader_internal.h",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  3. tensorflow/c/BUILD

        ]),
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    filegroup(
        name = "srcs",
        srcs = glob(
            [
                "*.cc",
                "*.h",
            ],
            exclude = [
                "c_api_experimental.cc",
                "c_api_experimental.h",
                "python_api.cc",
                "python_api.h",
                "*test*",
            ],
        ) + [
    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