Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for src1 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    flatbuffer_cc_library(
        name = "runtime_metadata_fbs",
        srcs = ["runtime_metadata.fbs"],
        compatible_with = get_compatible_with_portable(),
    )
    
    cc_library(
        name = "execution_metadata_exporter",
        srcs = [
            "execution_metadata_exporter.cc",
        ],
        hdrs = [
            "execution_metadata_exporter.h",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/BUILD

        ],
    )
    
    cc_library(
        name = "translate_cl_options",
        srcs = [
            "tf_mlir_translate_cl.cc",
        ],
        hdrs = [
            "tf_mlir_translate_cl.h",
        ],
        deps = [
            "@llvm-project//llvm:Support",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "export_graphdef",
        srcs = [
            "export_graphdef.cc",
        ],
        hdrs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

        ],
    )
    
    td_library(
        name = "rewrite_util_td_files",
        srcs = [
            "rewrite_util.td",
        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//mlir:OpBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "rewrite_util",
        srcs = [
            "rewrite_util.cc",
        ],
        hdrs = [
            "rewrite_util.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "size_utils",
        srcs = [
            "utils/size_utils.cc",
        ],
        hdrs = [
            "utils/size_utils.h",
        ],
        deps = [
            "@llvm-project//mlir:IR",
        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            ":xla_cluster_formation",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    cc_library(
        name = "verify_clustering_pass",
        srcs = [
            "verify_clustering_pass.cc",
        ],
        deps = [
            ":clustering_passes_inc_gen",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:attribute_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/utils/BUILD

        default_visibility = [
            "//tensorflow/compiler/mlir/tf2xla/internal:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "dialect_detection_utils",
        srcs = [
            "dialect_detection_utils.cc",
        ],
        hdrs = [
            "dialect_detection_utils.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/lite/experimental/tac/utils/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "utils",
        srcs = [
            "utils.cc",
        ],
        hdrs = [
            "utils.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate_lib",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 989 bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_test.go

    	for _, length := range lengths {
    		p := make([]byte, length)
    		_, _ = rand.Read(p)
    		crcInit := uint32(rand.Int63())
    		crc1 := crcFunc1(crcInit, p)
    		crc2 := crcFunc2(crcInit, p)
    		if crc1 != crc2 {
    			t.Errorf("mismatch: 0x%x vs 0x%x (buffer length %d)", crc1, crc2, length)
    		}
    	}
    }
    
    // TestSimple tests the simple generic algorithm.
    func TestSimple(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns_test.go

    	}
    	for i, tc := range testCases {
    		ns, srch, opts, err := parseResolvConf(strings.NewReader(tc.data))
    		if !tc.isErr {
    			require.NoError(t, err)
    			assert.EqualValues(t, tc.nameservers, ns, "test case [%d]: name servers", i)
    			assert.EqualValues(t, tc.searches, srch, "test case [%d] searches", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top