Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for function (0.18 sec)

  1. tensorflow/c/eager/BUILD

            "@com_google_absl//absl/strings",
        ],
    )
    
    cc_library(
        name = "graph_function",
        srcs = ["graph_function.cc"],
        hdrs = [
            "graph_function.h",
        ],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            ":abstract_function",
            "//tensorflow/core:framework",
            "//tensorflow/core/platform:refcount",
    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)
  2. tensorflow/BUILD

                ] + tf_additional_binary_deps() +
                # TODO(b/259305727): Remove this select and include captured_function in macos builds.
                select({
                    "//tensorflow:macos": [],
                    "//conditions:default": [
                        "//tensorflow/core/data:captured_function",
                    ],
                }),
        soversion = VERSION,
        static_deps = PACKAGE_STATIC_DEPS,
    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)
  3. tensorflow/c/BUILD

            "//tensorflow/core/platform:resource_loader",
            "@com_google_absl//absl/types:optional",
        ],
    )
    
    tf_cc_test(
        name = "c_api_function_test",
        size = "medium",
        srcs = ["c_api_function_test.cc"],
        deps = [
            ":c_api",
            ":c_api_internal",
            ":c_test_util",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/gradients/BUILD

    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "tf_cuda_tests_tags",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Library of gradient functions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "array_grad",
        srcs = ["array_grad.cc"],
        hdrs = [
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:39:44 GMT 2024
    - 6.7K bytes
    - Viewed (0)
Back to top