Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,856 for COMPILER (0.17 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Jdt.java

            properties.put("org.eclipse.jdt.core.compiler.compliance", sourceVersion);
            properties.put("org.eclipse.jdt.core.compiler.source", sourceVersion);
    
            if (sourceCompatibility.compareTo(JavaVersion.VERSION_1_3) <= 0) {
                properties.put("org.eclipse.jdt.core.compiler.problem.assertIdentifier", "ignore");
                properties.put("org.eclipse.jdt.core.compiler.problem.enumIdentifier", "ignore");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ir/BUILD

        srcs = ["tfrt_fallback_util_test.cc"],
        data = [
            "testdata/test.mlir",
        ],
        deps = [
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_sync_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_util",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

            "//tensorflow/compiler/mlir/lite/experimental/tac/hardwares:all-target-hardwares",
            "//tensorflow/compiler/mlir/lite/experimental/tac/hardwares:target_hardware",
            "//tensorflow/compiler/mlir/lite/experimental/tac/utils",
            "//tensorflow/compiler/mlir/tensorflow",
            "//third_party/python_runtime:headers",  # buildcleaner: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/basic/groovy/build.gradle

        }
    }
    // end::swift-dependency-mgmt[]
    
    // tag::swift-compiler-options-all-variants[]
    tasks.withType(SwiftCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.add("NDEBUG")
    
        // Define a compiler options
        compilerArgs.add '-O'
    }
    // end::swift-compiler-options-all-variants[]
    
    // tag::swift-compiler-options-per-variants[]
    application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.cc

    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.h"
    
    namespace tensorflow {
    namespace tf_mlrt_tpu {
    
    TensorflowMlrtTpuDialect::TensorflowMlrtTpuDialect(mlir::MLIRContext *context)
        : mlir::Dialect(/*name=*/"tf_mlrt_tpu", context,
                        mlir::TypeID::get<TensorflowMlrtTpuDialect>()) {
      addOperations<
    #define GET_OP_LIST
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompilerTest.groovy

        AnnotationProcessorDetector detector = Stub(AnnotationProcessorDetector)
        Compiler<JavaCompileSpec> delegate = Stub(Compiler)
    
        AnnotationProcessorDiscoveringCompiler compiler = new AnnotationProcessorDiscoveringCompiler(delegate, detector)
    
        def "when neither processor path nor processor option are given, no processors are used"() {
            when:
            compiler.execute(spec)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_variables.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/utils/variables_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    
    namespace mlir {
    namespace TFL {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/BUILD

        ],
        deps = [
            ":ptq_fallback_to_flex_inc_gen",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite/quantization/ir:QuantOps",
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:export_tf_dialect_op",
            "//tensorflow/core:protos_all_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingJavaCompilerTest.groovy

            when:
            compiler.execute(spec)
    
            then:
            1 * target.execute(spec) >> {
                assert spec.sourceFiles == files("Person1.java", "Person2.java")
            }
        }
    
        def "delegates to target compiler after resolving source and processor path"() {
            WorkResult workResult = Mock()
    
            when:
            def result = compiler.execute(spec)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/sparsity/BUILD

            "//tensorflow/compiler/mlir/lite/...",
            "//tensorflow/lite/...",
        ],
    )
    
    cc_library(
        name = "sparsify_model",
        srcs = [
            "sparsify_model.cc",
        ],
        hdrs = [
            "sparsify_model.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:common",
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top