Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for names (0.15 sec)

  1. tensorflow/BUILD

    config_setting(
        name = "arm",
        values = {"cpu": "arm"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "armeabi",
        values = {"cpu": "armeabi"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "armeabi-v7a",
        values = {"cpu": "armeabi-v7a"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "arm64-v8a",
    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)
  2. tensorflow/c/BUILD

    tf_kernel_library(
        name = "test_op_kernel",
        srcs = ["test_op.cc"],
        deps = [
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
        ],
        alwayslink = 1,
    )
    
    tf_cuda_cc_test(
        name = "env_test",
        size = "medium",
        srcs = ["env_test.cc"],
        linkopts = select({
            "//tensorflow:macos": ["-headerpad_max_install_names"],
    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)
Back to top