Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 146 for no_oss (0.09 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/BUILD

        ],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        default_size = "medium",
        default_tags = [
            "no_mac",  # TODO(b/191167848)
            "no_oss",  # TODO(b/190855110)
            "no_rocm",
        ],
        driver = "@llvm-project//mlir:run_lit.sh",
        exclude = [
            "common.py",
            "common_v1.py",
        ],
        per_test_extra_data = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 20:57:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/BUILD

            "@local_xla//xla/pjrt:pjrt_client",
        ],
    )
    
    tf_cuda_cc_test(
        name = "pjrt_compile_util_test",
        srcs = ["pjrt_compile_util_test.cc"],
        tags = [
            "config-cuda-only",
            "no_oss",  # This test only runs with GPU.
            "requires-gpu-nvidia",
            "xla",
        ],
        deps = [
            ":pjrt_compile_util",
            ":test_util",
            ":xla_gpu_jit",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/aot/tests/BUILD

    )
    
    glob_lit_tests(
        name = "all_lit_tests",
        data = [":filecheck_test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        tags_override = {
            "test_error_message.lit.pbtxt": ["no_oss"],  # TODO(b/150957738): to be fixed on oss.
        },
        test_file_exts = ["lit.pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "filecheck_test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/BUILD

        size = "small",
        srcs = [
            "c_api_distributed_test.cc",
        ],
        # TODO(b/136478427): Figure out how to correctly shut the server down
        args = ["--heap_check="],
        tags = [
            "no_oss",  # TODO(b/200848572)
            "no_windows",
        ],
        deps = [
            ":c_api",
            ":c_api_experimental",
            ":c_api_internal",
            ":c_api_test_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

            "@stablehlo//:chlo_ops",
        ],
    )
    
    tf_cc_test(
        name = "legalize_tf_quant_test",
        srcs = ["passes/bridge/legalize_tf_quant_test.cc"],
        # TODO(b/299290907): Fix OSS test.
        tags = ["no_oss"],
        deps = [
            "//tensorflow/compiler/jit",
            "//tensorflow/compiler/mlir/tf2xla/api/v2:legalize_tf",
            "//tensorflow/compiler/tf2xla:xla_helpers",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. configure.py

      # single list of filters for the .bazelrc file.
    
      # Filters to use with both --test_tag_filters and --build_tag_filters
      test_and_build_filters = ['-benchmark-test', '-no_oss', '-oss_excluded']
      # Additional filters for --test_tag_filters beyond those in
      # test_and_build_filters
      test_only_filters = ['-oss_serial']
      if is_windows():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/nn_ops.cc

    limitations under the License.
    ==============================================================================*/
    
    // This file is MACHINE GENERATED! Do not edit.
    
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    
    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/tracing_utils.h"
    #include "tensorflow/core/framework/types.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top