Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 284 for Compilation (0.52 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

                                                   block_launch_op.getResults());
      }
    
      return success();
    }
    
    // Creates a `tf.TPUCompileSucceededAssert` operation that parses compilation
    // status of `compile_op` to check whether compilation is successful.
    void BuildTPUCompileSucceededAssertOp(Operation* compile_op,
                                          Operation* result_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskIncrementalJavaCompilationIntegrationTest.groovy

    import spock.lang.Issue
    
    abstract class CrossTaskIncrementalJavaCompilationIntegrationTest extends AbstractCrossTaskIncrementalCompilationIntegrationTest {
        CompiledLanguage language = CompiledLanguage.JAVA
    
        def "compilation fails for private dependents on incompatible change"() {
            source api: ["class A { int method() { return 1; } }"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            run("impl:${language.compileTaskName}")
    
            then:
            impl.noneRecompiled()
        }
    
        def "new jar with duplicate class appearing earlier on classpath must trigger compilation"() {
            source impl: ["class A extends org.junit.Assert {}"]
    
            file("impl/build.gradle") << """
                configurations.implementation.dependencies.clear()
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    .Sources and Swift compilation
    image::swift-sourcesets-compilation.png[]
    
    // TODO once we have the testing chapter
    //Test sources are configured on each test suite script block. See <<swift_testing.adoc#swift_testing,Testing Swift projects>> chapter.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-mark-ops-for-outside-compilation | FILECHECK_OPTS="" FileCheck %s
    
    func.func @unsupported_op_missing_soft_placement_attribute() -> tensor<i32> {
      %0 = "tf_device.cluster"() ({
        // expected-error@+1 {{'tf.UnsupportedOp' op isn't compilable for TPU device}}
        %1 = "tf.UnsupportedOp"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    .Sources and {cpp} compilation
    image::cpp-sourcesets-compilation.png[]
    
    Test sources are configured on each test suite script block. See <<cpp_testing.adoc#cpp_testing,Testing {cpp} projects>> chapter.
    
    [[sec:cpp_dependency_management_overview]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    === Use incremental compilation
    
    Gradle can analyze dependencies down to the individual class level
    to recompile only the classes affected by a change.
    Gradle 4.10 and above enable incremental compilation by default.
    To enable incremental compilation by default in older Gradle versions, add the following setting to your
    `build.gradle` file:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Though moving the files around wouldn't have an effect on the result of the compilation, for incremental compilation the `JavaCompile` task relies on the relative path to find other classes in the same package.
    Therefore, the path sensitivity for the sources of the `JavaCompile` task is `RELATIVE`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

        arguments.push_back(op_->getOperand(i));
      }
    
      // Ideally we could use the Function Importer but it increases compilation
      // time when we have a model with thousands of tf2xla op fallbacks. At time
      // of writing, this caused compilation time to be greater than 2x slower.
      // So we have to directly import these instructions.
      TF_ASSIGN_OR_RETURN(
          mlir::Value root_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

            if (!moduleInfoSources.isEmpty()) {
                // Always recompile module-info.java if present.
                // This solves case for incremental compilation where some package was deleted and exported in module-info, but compilation doesn't fail.
                spec.addClassToCompile(MODULE_INFO_CLASS_NAME);
                spec.addSourcePaths(moduleInfoSources);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top