Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for sris (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/BUILD

    cc_library(
        name = "string_util",
        srcs = ["utils/string_util.cc"],
        hdrs = ["utils/string_util.h"],
        deps = [
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    cc_library(
        name = "fake_session",
        srcs = ["utils/fake_session.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/BUILD

        ],
        licenses = ["notice"],
    )
    
    exports_files(
        srcs = ["schema.fbs"],
    )
    
    filegroup(
        name = "tflite_internal_cc_3p_api_deps_src",
        srcs = [
            ":schema_fbs_srcs",
            ":schema_utils.h",
        ],
        visibility = ["//tensorflow/lite:__pkg__"],
    )
    
    flatbuffer_cc_library(
        name = "schema_fbs",
        srcs = ["schema.fbs"],
        compatible_with = get_compatible_with_portable(),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/BUILD

    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "common",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        deps = [
            "//tensorflow/c/experimental/ops/gen/model",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 18:35:29 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/BUILD

    pytype_strict_library(
        name = "calibration_algorithm",
        srcs = ["calibration_algorithm.py"],
        deps = [
            ":calibration_statistics_proto_py",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_py",
            "//third_party/py/numpy",
        ],
    )
    
    pytype_strict_contrib_test(
        name = "calibration_algorithm_test",
        srcs = ["calibration_algorithm_test.py"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/next_pluggable_device/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    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",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/BUILD

            "//tensorflow/lite/tools/optimize/...",
        ],
    )
    
    tf_proto_library(
        name = "quantization_info_proto",
        srcs = [
            "quantization_info.proto",
        ],
        cc_api_version = 2,
    )
    
    cc_library(
        name = "quantization_passes",
        srcs = [
            "import_quant_stats_pass.cc",
        ],
        hdrs = [
            "quantization_passes.h",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/BUILD

    )
    
    cc_library(
        name = "stablehlo_util",
        srcs = [
            "transforms/stablehlo_util.cc",
        ],
        hdrs = [
            "transforms/stablehlo_util.h",
        ],
        copts = [
            "-Ithird_party",
        ],
        deps = [
            "@llvm-project//llvm:Support",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "rename_entrypoint_to_main",
        srcs = [
            "transforms/rename_entrypoint_to_main.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/BUILD

    exports_files(glob(["g3doc/*.md"] + ["g3doc/_includes/tf_passes.md"]))
    
    # To reference all tablegen files here when checking for updates to them.
    filegroup(
        name = "td_files",
        srcs = glob(["**/*.td"]),
    )
    
    cc_library(
        name = "op_or_arg_name_mapper",
        srcs = ["op_or_arg_name_mapper.cc"],
        hdrs = ["op_or_arg_name_mapper.h"],
        deps = [
            "//tensorflow/compiler/mlir/utils:name_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

            "//tensorflow/python:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    # copybara:uncomment_begin(google-only)
    # tf_py_strict_test(
    #     name = "tensorflow_to_stablehlo_test",
    #     testonly = 1,
    #     srcs = ["integration_test/tensorflow_to_stablehlo_test.py"],
    #     deps = [
    #         ":pywrap_tensorflow_to_stablehlo",
    #         "//testing/pymocks:matchers",
    #         "//third_party/py/mlir",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/BUILD

        ]) + if_google([
            "//tensorflow/core/platform/default/build_config:test_main",
        ]),
    )
    
    filegroup(
        name = "quantize_header",
        srcs = ["quantize.h"],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "tfcompile_lib",
        srcs = [
            "codegen.cc",
            "compile.cc",
            "flags.cc",
        ],
        hdrs = [
            "codegen.h",
            "compile.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top