Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 284 for Compilation (0.29 sec)

  1. src/crypto/internal/boring/goboringcrypto.h

    // having a full set of BoringCrypto headers), the struct details are not here.
    // Instead, while building the syso, we compile and run a C++ program
    // that checks that the sizes match. The program also checks (during compilation)
    // that all the function prototypes match the BoringCrypto equivalents.
    // The generation of the checking program depends on the declaration
    // forms used below (one line for most, multiline for enums).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      if (lower_to_xla_hlo) {
        // Legalize any StableHLO ops to MHLO. Bridge still doesn't use StableHLO
        // but such ops might be present in the input from upstream like TFRT
        // compilation. Later on, this could be merged in the legalization pass when
        // we migrate bridge to StableHLO.
    
        // TODO(b/259459405): Avoid this peculiar use through some refactoring in
        // the caller.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Compilation speed increase - Reducing the number of transitive dependencies leaked from a project aids the compiler process of its consumers as there are fewer libraries to classload and fewer namespaces for Gradle's incremental compiler to track.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_launch_util_test.cc

      }
      return variable_snapshots;
    }
    
    class PjRtExecutionUtilTest : public OpsTestBase {
     public:
      PjRtExecutionUtilTest() {
        // Set flag to use PJRT for device compilation and execution.
        auto& rollout_config = GetXlaOpsCommonFlags()->tf_xla_use_device_api;
        rollout_config.enabled_for_xla_launch_ = true;
        rollout_config.enabled_for_compile_on_demand_ = true;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            spec.compileOptions.forkOptions.javaHome == null
            (spec as ForkingJavaCompileSpec).javaHome == javaHome
    
            where:
            toolchainVersion << [8, 9, 10, 11]
        }
    
        def "incremental compilation is enabled by default"() {
            def javaCompile = project.tasks.create("compileJava", JavaCompile)
    
            expect:
            javaCompile.options.incremental
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * <p>
         * See the example below how {@link org.gradle.api.tasks.SourceSet} 'main' is accessed and how the {@link org.gradle.api.file.SourceDirectorySet} 'java'
         * is configured to exclude some package from compilation.
         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java'
         * }
         *
         * sourceSets {
         *   main {
         *     java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    Every configuration can be identified by a unique name.
    
    Many Gradle plugins add pre-defined configurations to your project.
    The Java plugin, for example, adds configurations to represent the various classpaths it needs for source code compilation, executing tests and the like.
    See <<java_plugin.adoc#sec:java_plugin_and_dependency_management,the Java plugin chapter>> for an example.
    
    .Configurations use declared dependencies for specific purposes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/PredicatesTest.java

        nums.add(3);
        Predicate<Integer> isThree = Predicates.in(nums);
        assertFalse(isThree.apply(3));
      }
    
      /*
       * Tests that compilation will work when applying explicit types.
       */
      @SuppressWarnings("unused") // compilation test
      public void testIn_compilesWithExplicitSupertype() {
        Collection<Number> nums = ImmutableSet.of();
        Predicate<Number> p1 = Predicates.in(nums);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            configurations["testRuntimeClasspath"].extendsFrom(platformImplementation)
            platformImplementation.withDependencies {
                // use 'withDependencies' to not attempt to find platform project during script compilation
                add(project.dependencies.create(platform(project(":distributions-dependencies"))))
            }
        }
    }
    
    fun addCompileAllTask() {
        tasks.register("compileAll") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

                                        status_or_tpu_device_assignment))) {
        return failure();
      }
      if (!status_or_tpu_device_assignment.ok())
        return cluster.emitError()
               << "error in fetching TPU compilation/execution devices: "
               << status_or_tpu_device_assignment.status().message();
    
      llvm::ArrayRef<llvm::SmallVector<tensorflow::TPUDeviceAndHost, 8>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top