Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 261 for sris (0.16 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/BUILD

            "//learning/brain/mobile/model_optimization/...",
            "//tensorflow/compiler/mlir/...",
            "//tensorflow/compiler/mlir/lite/...",
        ],
    )
    
    td_library(
        name = "ptq_td_files",
        srcs = [
            "fallback_to_flex_patterns.td",
        ],
        compatible_with = get_compatible_with_portable(),
        visibility = ["//visibility:private"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            }
            return classLoader;
        }
    
        private static Set<URI> uris(VisitableURLClassLoader classLoader) throws URISyntaxException {
            URL[] urls = classLoader.getURLs();
            Set<URI> uris = new HashSet<>(urls.length);
            for (URL url : urls) {
                uris.add(url.toURI());
            }
            return uris;
        }
    
        private ClassLoaderDetails getDetails(ClassLoader classLoader) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/examples/BUILD

        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],  # Apache 2.0
    )
    
    cc_library(
        name = "example_hardware",
        srcs = ["example_hardware.cc"],
        hdrs = ["example_hardware.h"],
        deps = [
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite/experimental/tac:device_transform_patterns",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 977 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/stablehlo/BUILD

        default_visibility = ["//tensorflow/compiler/mlir/lite:__subpackages__"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "quantization",
        srcs = ["quantization.cc"],
        hdrs = ["quantization.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/cc/saved_model:constants",
            "//tensorflow/cc/saved_model:loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/BUILD

            "//tensorflow/c:tf_file_statistics",
            "//tensorflow/c:tf_status",
        ],
    )
    
    # Core TensorFlow depends on this, will be included in main library
    cc_library(
        name = "modular_filesystem",
        srcs = [
            "modular_filesystem.cc",
            "modular_filesystem_registration.cc",
        ],
        hdrs = [
            "modular_filesystem.h",
            "modular_filesystem_registration.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/ir/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    td_library(
        name = "QuantizationOpsTdFiles",
        srcs = [
            "QuantOps.td",
            "QuantOpsBase.td",
        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//mlir:InferTypeOpInterfaceTdFiles",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/customization/BUILD

            "//tensorflow/python/ops:array_ops_gen",
            "//tensorflow/python/platform:flags",
            "@absl_py//absl:app",
        ],
    )
    
    tf_py_strict_test(
        name = "test_ops_test",
        size = "small",
        srcs = ["test_ops_test.py"],
        data = [":test_ops_mlir"],
        python_version = "PY3",
        srcs_version = "PY3",
        tags = [
            "no_windows",  # TODO(b/170752141)
            "nomac",  # TODO(b/170752141)
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 30 22:22:30 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/end2end/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the quant stats files that are used by the tests.
    filegroup(
        name = "quant_stats_files",
        srcs = glob(
            ["**/*.stats"],
        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/ssa_test.go

    		}
    		fset := token.NewFileSet()
    		code, err := parser.ParseFile(fset, f.Name(), text, 0)
    		if err != nil {
    			t.Fatalf("can't parse testdata/%s: %v", f.Name(), err)
    		}
    		srcs = append(srcs, filepath.Join("testdata", f.Name()))
    		foundTest := false
    		for _, d := range code.Decls {
    			fd, ok := d.(*ast.FuncDecl)
    			if !ok {
    				continue
    			}
    			if !strings.HasPrefix(fd.Name.Name, "Test") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        srcs = [
            "//tensorflow/compiler/mlir/tfrt:tfrt_fallback_translate",
            "//tensorflow/core/runtime_fallback:tf_bef_executor",
            "//tensorflow/core/runtime_fallback/util:fallback_test_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top