Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for no_oss (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/cc/BUILD

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            mean, variance = scale, offset
            out = nn_ops.conv2d(
                input_tensor,
                self.filters,
                strides=strides,
                dilations=dilations,
                padding=padding,
                data_format='NHWC',
                name='sample/conv',
            )
            if bias_fn is not None:
              out = nn_ops.bias_add(out, self.bias)
            if has_batch_norm:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/BUILD

    load("//tensorflow:tensorflow.bzl", "if_google", "if_oss", "tf_cc_binary", "tf_cc_test")
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "if_llvm_aarch32_available",
        "if_llvm_aarch64_available",
        "if_llvm_hexagon_available",
        "if_llvm_powerpc_available",
        "if_llvm_system_z_available",
        "if_llvm_x86_available",
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionInstaller.java

        private static final InternalBuildProgressListener NO_OP = new NoOpListener();
        private final ProgressLoggerFactory progressLoggerFactory;
        private final InternalBuildProgressListener buildProgressListener;
        private final Clock clock;
        private final AtomicReference<InternalBuildProgressListener> currentListener = new AtomicReference<InternalBuildProgressListener>(NO_OP);
        // Protects the following state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

        }
    
        public static FilePropertyFactory filePropertyFactory() {
            return new DefaultFilePropertyFactory(PropertyHost.NO_OP, resolver(), fileCollectionFactory());
        }
    
        public static FilePropertyFactory filePropertyFactory(File baseDir) {
            return new DefaultFilePropertyFactory(PropertyHost.NO_OP, resolver(baseDir), fileCollectionFactory(baseDir));
        }
    
        public static FileFactory fileFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

            @Override
            public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
                taskPropertySpecs.add(new DefaultValidatingProperty(propertyName, value, optional, ValidationActions.NO_OP));
            }
    
            @Override
            public void visitUnpackedOutputFileProperty(String propertyName, boolean optional, PropertyValue value, OutputFilePropertySpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

                        def filePropertyFactory = new DefaultFilePropertyFactory(PropertyHost.NO_OP, fileResolver, fileCollectionFactory)
                        return new DefaultProjectLayout(fileResolver.resolve("."), fileResolver, DefaultTaskDependencyFactory.withNoAssociatedProject(), PatternSets.getNonCachingPatternSetFactory(), PropertyHost.NO_OP, fileCollectionFactory, filePropertyFactory, filePropertyFactory)
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top