Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for sris (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/BUILD

        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "min_max_value",
        srcs = [],
        hdrs = ["min_max_value.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [],
    )
    
    cc_library(
        name = "statistics",
        srcs = ["statistics.cc"],
        hdrs = ["statistics.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/BUILD

        ],
    )
    
    cc_library(
        name = "tf_quantize_op_utils",
        srcs = ["tf_quantize_op_utils.cc"],
        hdrs = ["tf_quantize_op_utils.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Support",
        ],
    )
    
    cc_library(
        name = "tf_to_uniform_attribute_utils",
        srcs = ["tf_to_uniform_attribute_utils.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

    tf_cc_binary(
        name = "tfl_quantizer",
        srcs = [
            "tfl_quantizer.cc",
        ],
        deps = [
            ":quantize_model",
            "//tensorflow/compiler/mlir/lite/schema:schema_fbs",
            "//tensorflow/lite:framework",
            "//tensorflow/lite/c:c_api_types",
            "@llvm-project//llvm:Support",
        ],
    )
    
    tf_cc_test(
        name = "quantize_model_test",
        srcs = ["quantize_model_test.cc"],
        args = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/BUILD

        ],
    )
    
    filegroup(
        name = "converter_python_api_hdrs",
        srcs = [
            "converter_python_api.h",
        ],
        visibility = [
            "//tensorflow/python:__subpackages__",
        ],
    )
    
    cc_library(
        name = "converter_python_api",
        srcs = ["converter_python_api.cc"],
        hdrs = ["converter_python_api.h"],
        features = ["-parse_headers"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

            "@llvm-project//mlir:Support",
        ],
    )
    
    cc_library(
        name = "math_utils",
        srcs = ["utils/math_utils.cc"],
        hdrs = ["utils/math_utils.h"],
        compatible_with = get_compatible_with_portable(),
        deps = ["@llvm-project//mlir:Support"],
    )
    
    tf_cc_test(
        name = "math_utils_test",
        srcs = ["utils/math_utils_test.cc"],
        deps = [
            ":math_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    func testFiles(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opts ...func(*Config)) {
    	enableAlias := true
    	opts = append(opts, func(conf *Config) { conf.EnableAlias = enableAlias })
    	testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	if !manual {
    		enableAlias = false
    		testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/net/addrselect.go

    }
    
    type byRFC6724 struct {
    	addrs    []IPAddr // addrs to sort
    	addrAttr []ipAttr
    	srcs     []netip.Addr // or not valid addr if unreachable
    	srcAttr  []ipAttr
    }
    
    func (s *byRFC6724) Len() int { return len(s.addrs) }
    
    func (s *byRFC6724) Swap(i, j int) {
    	s.addrs[i], s.addrs[j] = s.addrs[j], s.addrs[i]
    	s.srcs[i], s.srcs[j] = s.srcs[j], s.srcs[i]
    	s.addrAttr[i], s.addrAttr[j] = s.addrAttr[j], s.addrAttr[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

    filegroup(
        name = "extra_files",
        srcs = glob(
            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/metrics/BUILD

    )
    
    cc_library(
        name = "error_collector",
        srcs = ["error_collector.cc"],
        hdrs = ["error_collector.h"],
        deps = [
            ":types_util",
            "//tensorflow/lite/python/metrics:converter_error_data_proto_cc",
            "@com_google_absl//absl/strings",
        ],
    )
    
    cc_library(
        name = "error_collector_inst",
        srcs = ["error_collector_inst.cc"],
        hdrs = ["error_collector_inst.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    filegroup(
        name = "headers",
        srcs = [
            "stream_executor.h",
        ],
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    cc_library(
        name = "stream_executor_hdrs",
        hdrs = ["stream_executor.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 00:27:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top