Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 723 for Compilation (0.41 sec)

  1. tensorflow/compiler/jit/device_compiler_test.cc

      NameAttrList fn;
      fn.set_name("foo");
    
      // Using a mock here to determine when the async compilation finishes. This is
      // to avoid using absl::SleepFor().
      // `RegisterCompilation` is the last call that happens just before the async
      // compilation completes. We use the completion of this call to determine when
      // the compilation finshes to verify expected behavior.
      Notification done;
      EXPECT_CALL(*mock_profiler_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compiler_options_util.h

            xla_device_compiler,
        const FunctionLibraryRuntime& function_library);
    
    // Returns created options for XLA compiler when PjRt (Device API) is used for
    // compilation and execution.
    XlaCompiler::Options GenerateCompilerOptionsForPjRt(
        const FunctionLibraryRuntime& function_library,
        const DeviceBase* device_base, const XlaPlatformInfo& platform_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. 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)
  4. build-logic-commons/build-platform/build.gradle.kts

    val codenarcVersion = if (isGroovy4) "3.1.0-groovy-4.0" else "3.1.0"
    val spockVersion = if (isGroovy4) "2.2-groovy-4.0" else "2.2-groovy-3.0"
    val asmVersion = "9.7"
    // To try out better kotlin compilation avoidance and incremental compilation
    // with -Pkotlin.incremental.useClasspathSnapshot=true
    val kotlinVersion = providers.gradleProperty("buildKotlinVersion")
        .getOrElse(embeddedKotlinVersion)
    
    dependencies {
        constraints {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/kotlin/settings.gradle.kts

    rootProject.name = "incremental-compilation"
    include("app")
    include("library")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/darwin_no_cgo.txt

    # For reproducibility and easier cross-compilation,
    # nothing in std is supposed to use cgo on macOS.
    # Check that cgo does not appear as a dependency
    # of cmd/go, which imports approximately everything
    # in std (certainly everything relevant).
    [!GOOS:darwin] skip
    go list -deps cmd/go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:09:52 UTC 2024
    - 308 bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyForkOptions.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.compile;
    
    /**
     * Fork options for Groovy compilation. Only take effect if {@code GroovyCompileOptions.fork}
     * is {@code true}.
     */
    public abstract class GroovyForkOptions extends ProviderAwareCompilerDaemonForkOptions {
        private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 925 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/crossCompilation/readme.xml

    <sample>
        <para>A project doing cross compilation to Java 6</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompiler.java

        }
    
        protected WorkResult doIncrementalCompile(IncrementalCompilation compilation, T spec) {
            // Determine the actual sources to clean/compile
            spec.setSourceFiles(compilation.getRecompile());
            spec.setRemovedSourceFiles(compilation.getRemoved());
            spec.setSourceFilesForPch(getSourceFilesForPch(spec));
            return delegateCompiler.execute(spec);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. 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)
Back to top