Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tf_cc_shared_object (0.19 sec)

  1. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

    load("//tensorflow:tensorflow.bzl", "get_win_copts", "tf_cc_shared_object")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for Windows environment
    tf_cc_shared_object(
        name = "windows_filesystem.dll",
        framework_so = [],
        linkstatic = False,
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 987 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_shared_object")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    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",
    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)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

    load("//tensorflow:tensorflow.bzl", "get_win_copts", "tf_cc_shared_object", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for GCS environments
    tf_cc_shared_object(
        name = "gcs_filesystem",
        framework_so = [],
        linkstatic = False,
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
    load(
        "//tensorflow:tensorflow.bzl",
        "VERSION",
        "VERSION_MAJOR",
        "check_deps",
        "if_google",
        "if_oss",
        "if_xla_available",
        "tf_cc_shared_object",
        "tf_custom_op_library_additional_deps_impl",
        "tf_monitoring_python_deps",
        "tf_native_cc_binary",
        "tsl_async_value_deps",
    )
    load(
        "//tensorflow:tensorflow.default.bzl",
    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)
Back to top