Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for no_oss (0.09 sec)

  1. tensorflow/cc/experimental/libtf/BUILD

            "//tensorflow/core/platform:statusor",
        ],
    )
    
    tf_cc_test(
        name = "libtf_tensor_test",
        size = "medium",
        srcs = ["tests/tensor_test.cc"],
        tags = ["no_oss"],  # TODO(b/193268458): Need to disable TFRT.
        deps = [
            ":libtf",
            "//tensorflow/c:tf_status_helper",
            "//tensorflow/c/eager:abstract_context",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/BUILD

        ],
    )
    
    tf_cc_test(
        name = "device_compiler_serialize_test",
        srcs = [
            "device_compiler_serialize_test.cc",
        ],
        tags = [
            "config-cuda-only",
            "no_oss",  # This test only runs with GPU.
            "requires-gpu-nvidia",
            "xla",
        ],
        deps = [
            ":device_compiler_test_helper",
            "//tensorflow/compiler/jit:compilation_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/BUILD

        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # TODO: b/288344501 - Enable OSS tests again when stable-quant-opt works well.
        default_tags = [
            "no_oss",
            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/quantization/stablehlo:run_lit.sh",
        size_override = {
        },
        tags_override = {
        },
        test_file_exts = ["mlir"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow_to_stablehlo/BUILD

            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:Support",
        ],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        default_tags = [
            "no_oss",
            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/tensorflow_to_stablehlo:run_lit.sh",
        size_override = {
        },
        tags_override = {
        },
        test_file_exts = ["mlir"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/BUILD

    tf_cc_test(
        name = "flatbuffer_compatibility_test",
        size = "small",
        srcs = ["flatbuffer_compatibility_test.cc"],
        data = [
            "schema.fbs",
            "schema_v3b.fbs",
        ],
        tags = [
            "no_oss",
            "tflite_not_portable_android",
            "tflite_not_portable_ios",
        ],
        deps = [
            "//tensorflow/core/platform",
            "@com_google_googletest//:gtest_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    tf_cc_shared_test(
        name = "kernel_fallback_compat_test",
        srcs = ["kernel_fallback_compat_test.cc"],
        data = [
            "create_op.mlir.bef",
            "custom_thread_pool.mlir.bef",
        ],
        tags = ["no_oss"],
        deps = [
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/core:all_kernels",
            "//tensorflow/core:lib",
            "//tensorflow/core/platform:resource_loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/lhlo_to_jitrt/BUILD

    load("//tensorflow:tensorflow.bzl", "if_oss")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # copybara:uncomment_begin
    #
    # glob_lit_tests(
    #     name = "all_tests",
    #     data = [":test_utilities"],
    #     driver = "//tensorflow/compiler/mlir:run_lit.sh",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 838 bytes
    - Viewed (0)
  8. src/go/types/errors_test.go

    	if got := err.msg(); got != want {
    		t.Errorf("empty error: got %q, want %q", got, want)
    	}
    
    	want = "foo 42"
    	err.addf(noposn, "foo %d", 42)
    	if got := err.msg(); got != want {
    		t.Errorf("simple error: got %q, want %q", got, want)
    	}
    
    	want = "foo 42\n\tbar 43"
    	err.addf(noposn, "bar %d", 43)
    	if got := err.msg(); got != want {
    		t.Errorf("simple error: got %q, want %q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/reader.cc

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_model.pb.h"
    #include "tensorflow/core/util/tensor_bundle/byte_swap_tensor.h"
    // Placeholder for protosplitter merger include.
    
    #define IS_OSS true
    
    namespace tensorflow {
    
    absl::StatusOr<MetaGraphDef*> FindMetaGraphDef(
        const std::unordered_set<string>& tags, SavedModel* saved_model_proto) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/BUILD

    load("//tensorflow:tensorflow.bzl", "if_oss")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 903 bytes
    - Viewed (0)
Back to top