Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for macosx (0.17 sec)

  1. tensorflow/BUILD

            [],
        ),
        values = {
            "apple_platform_type": "macos",
            "cpu": "darwin_x86_64",
        },
    )
    
    selects.config_setting_group(
        name = "macos_x86_64",
        match_any = [
            ":macos_x86_64_default",
            ":macos_x86_64_crosscompile",
        ],
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "macos_arm64",
    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 (6)
  2. tensorflow/c/eager/BUILD

        deps = [
            ":immediate_execution_context",
            "//tensorflow/c:conversion_macros",
        ],
    )
    
    cc_library(
        name = "tfe_cancellation_manager_internal",
        hdrs = ["tfe_cancellation_manager_internal.h"],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            "//tensorflow/c:conversion_macros",
            "//tensorflow/core:framework",
        ],
    )
    
    cc_library(
    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/experimental/filesystem/plugins/posix/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for POSIX environments: Linux, MacOS, Android, etc.
    tf_cc_shared_object(
        name = "libposix_filesystem.so",
        framework_so = [],
        linkstatic = False,
        visibility = ["//visibility:public"],
        deps = [":posix_filesystem_impl"],
    )
    
    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)
  4. tensorflow/c/BUILD

        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "c_api_macros_hdrs",
        hdrs = [
            "c_api_macros.h",
        ],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "c_api_macros",
        hdrs = [
            "c_api_macros.h",
            "c_api_macros_internal.h",
        ],
        copts = tf_copts(),
        visibility = ["//visibility:public"],
        deps = [
    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)
  5. tensorflow/c/experimental/next_pluggable_device/BUILD

    )
    
    cc_library(
        name = "c_api",
        srcs = ["c_api.cc"],
        hdrs = ["c_api.h"],
        visibility = ["//visibility:public"],
        deps = [
            ":tensor_pjrt_buffer_util",
            "//tensorflow/c:c_api_macros_hdrs",
            "//tensorflow/c:kernels_experimental_hdrs",
            "//tensorflow/c:kernels_hdrs",
            "//tensorflow/c:tf_buffer",
            "//tensorflow/c:tf_status_internal",
            "//tensorflow/c:tf_tensor_internal",
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jan 09 00:52:04 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/grappler/BUILD

    )
    
    cc_library(
        name = "grappler_hdrs",
        hdrs = ["grappler.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api",
            "//tensorflow/c:c_api_macros",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "grappler",
        srcs = ["grappler.cc"],
        hdrs = [
            "grappler.h",
            "grappler_internal.h",
        ],
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 2.1K bytes
    - Viewed (0)
Back to top