Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 723 for Compilation (0.31 sec)

  1. platforms/documentation/docs/src/snippets/groovy/crossCompilation/readme.xml

    <sample>
        <para>A project doing cross compilation for a Groovy Project to Java 7</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

    # defined in.
    
    # A simple test of tf_library from a text protobuf, to enable benchmark_test.
    # This test uses an incompleted graph with a node that is not defined. The
    # compilation works because the undefined node is a feed node.
    tf_library(
        name = "test_graph_tfadd",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let summary = "Extracts device outside compilation computation to a separate tf_device.parallel_execute region.";
    
      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation, which denotes ops that should be run on CPU/host, from a device cluster.
        Each outside compilation cluster is moved to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

        // Compile executable for sharded program
        pjrt_compile_options.compile_portable_executable = false;
      } else {
        // Compile portable executable for single device compilation.
        pjrt_compile_options.compile_portable_executable = true;
      }
      return pjrt_compile_options;
    }
    
    absl::StatusOr<std::unique_ptr<xla::PjRtLoadedExecutable>>
    PjRtDeviceCompilerClient::BuildExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            assertCanFetchClassPathOfScriptPlugin("")
        }
    
        def "can fetch classpath of script plugin with compilation errors"() {
    
            expect:
            assertCanFetchClassPathOfScriptPlugin("val p = ")
        }
    
        def "can fetch classpath of script plugin with buildscript block compilation errors"() {
    
            expect:
            assertCanFetchClassPathOfScriptPlugin("buildscript { val p = }")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

     * a timestamp of 0.  swiftc then sees those source files as different from the last compilation.
     *
     * If we have any issues reading or writing the swiftdeps file, we bail out and disable incremental compilation.
     */
    @SuppressWarnings("rawtypes")
    class SwiftDepsHandler {
        private static final Logger LOGGER = LoggerFactory.getLogger(SwiftDepsHandler.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_unsupported_goos.txt

    [compiler:gccgo] skip # gccgo assumes cross-compilation is always possible
    
    env GOOS=windwos # intentional misspelling of windows
    
    ! go build -n exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 18:25:35 UTC 2023
    - 191 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/kotlin/build.gradle.kts

        // is not compatible with the configuration cache.
        val compileClasspath: FileCollection = configurations.compileClasspath.get()
        from(compileClasspath)
        doFirst {
            println(">> Compilation deps: ${compileClasspath.files.map { it.name }}")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 630 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

               "variable formatting.";
      let constructor = "TFTPU::CreateTPUVariableRuntimeReformattingPass()";
      let description = [{
        A pass that takes advantage of a loop to add ops that allow the execution to
        avoid repeatedly formatting variables back and forth. The desired formatting
        is determined by TPU program compilation, so this pass does not include how
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/performance/resolveAtConfigurationTime/kotlin/build.gradle.kts

    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.apache.commons:commons-lang3:3.11")
    }
    
    // tag::copy[]
    tasks.register<Copy>("copyFiles") {
        println(">> Compilation deps: ${configurations.compileClasspath.get().files.map { it.name }}")
        into(layout.buildDirectory.dir("output"))
        from(configurations.compileClasspath)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 406 bytes
    - Viewed (0)
Back to top