Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,894 for ccCompiler (0.14 sec)

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

        visibility = [
            "//tensorflow:__pkg__",
            "//tensorflow/compiler/mlir/quantization/tensorflow/python:__pkg__",
        ],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration:calibration_parameters",
            "//tensorflow/compiler/mlir/quantization/tensorflow:quantization_options_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/BUILD

            ":passes",
            ":tfr",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:convert_attr",
            "//tensorflow/compiler/mlir/tensorflow:convert_type",
            "//tensorflow/compiler/mlir/tensorflow:export_graphdef",
            "//tensorflow/compiler/mlir/tensorflow:mlir_roundtrip_flags",
            "//tensorflow/compiler/mlir/tensorflow/transforms:tensorflow_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td

      let name = "mlrt";
    
      let description = [{
        The MLRT Dialect.
      }];
    
      let cppNamespace = "::mlrt::compiler";
    }
    
    def MlrtFutureType : DialectType<Mlrt_Dialect,
        CPred<"$_self.isa<::mlrt::compiler::FutureType>()">, "!mlrt.future type">,
        BuildableType<"$_builder.getType<::mlrt::compiler::FutureType>()"> {
      let description = [{
        `!mlrt.future type` represents a C++ mlrt::Future.
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-plugins/src/test/kotlin/org/gradle/kotlin/dsl/plugins/dsl/ExperimentalCompilerWarningSilencerTest.kt

            assertThat(rewritten, equalTo(message))
        }
    
        @Test
        fun `silences unsafe internal compiler arguments`() {
            val silencer = ExperimentalCompilerWarningSilencer(listOf("-XXLanguage:+DisableCompatibilityModeForNewInference"))
    
            val message = "w: ATTENTION!\n" +
                "This build uses unsafe internal compiler arguments:\n" +
                "\n" +
                "-XXLanguage:+DisableCompatibilityModeForNewInference\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_structs.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_verifiers.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

    #include "tensorflow/compiler/mlir/init_mlir.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/BUILD

            ":llvm_targets",  # fixdeps: keep
            "//tensorflow/compiler/tf2xla",
            "//tensorflow/compiler/tf2xla:mlir_tf2xla",
            "//tensorflow/compiler/tf2xla:tf2xla_proto_cc",
            "//tensorflow/compiler/tf2xla:tf2xla_util",
            "//tensorflow/compiler/tf2xla:xla_compiler",
            "//tensorflow/compiler/tf2xla/kernels:xla_dummy_ops",
            "//tensorflow/compiler/tf2xla/kernels:xla_ops",
            "//tensorflow/core:core_cpu_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

        }
    
        def 'uses release property combined with toolchain compiler'() {
            def javaCompile = project.tasks.create('compileJava', JavaCompile)
            javaCompile.destinationDirectory.fileValue(new File('somewhere'))
            def javaHome = Jvm.current().javaHome
            def metadata = Mock(JavaInstallationMetadata)
            def compiler = Mock(JavaCompiler)
    
            metadata.languageVersion >> JavaLanguageVersion.of(15)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/BuildOperationLoggingCompilerDecorator.java

    import org.gradle.language.base.internal.compile.Compiler;
    
    public class BuildOperationLoggingCompilerDecorator<T extends BinaryToolSpec> implements Compiler<T> {
    
        private final Compiler<? super T> delegate;
    
        private BuildOperationLoggingCompilerDecorator(Compiler<? super T> delegate) {
            this.delegate = delegate;
        }
    
        public static <T extends BinaryToolSpec> Compiler<T> wrap(Compiler<T> delegate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/BUILD

            "//tensorflow/compiler/mlir/tfrt:__subpackages__",
        ],
        deps = [
            ":mlrt_ops",
            ":tf_mlrt_ops_inc_gen",
            ":tf_ops_inc_gen",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_side_effects",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 17:04:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top