Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 795 for launch0 (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // in a `tf_device.launch` op with the same `device` attribute.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDeviceAttributeToLaunchPass();
    
    // Creates a pass that hoists a `tf_device.launch` body and assigns a `device`
    // attribute to each TensorFlow dialect op in the body based on the `device`
    // attribute on the `tf_device.launch`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island_legacy.mlir

            "tf_device.launch"() ({
              "tf.opA"() : () -> ()
              tf_device.return
            }) {device = "CORE_0"} : () -> ()
            tf_device.return
          }
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: "tf_device.launch"
    // CHECK: device = "CORE_0"
    // CHECK: "tf.opA"
    // CHECK: "tf_device.launch"
    // CHECK: device = "CORE_0"
    // CHECK: "tf.opA"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

            expect:
            runBuild { launcher -> launcher.addArguments() }
        }
    
        def "Adding null argument throws NPE"() {
            when:
            runBuild { launcher -> launcher.addArguments(null as String) }
    
            then:
            thrown(NullPointerException)
    
            when:
            runBuild { launcher -> launcher.addArguments(null as List) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r66/CommandLineOptionsCrossVersionSpec.groovy

            def result = withBuild { BuildLauncher launcher ->
                launcher.setJvmArguments("-Dorg.gradle.workers.max=12")
            }
    
            then:
            result.standardOutput.contains("max workers: 12")
        }
    
        def "command-line arguments take precedence over system properties"() {
            when:
            def result = withBuild { BuildLauncher launcher ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/StartBuildOrRespondWithBusy.java

     */
    package org.gradle.launcher.daemon.server.exec;
    
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics;
    import org.gradle.launcher.daemon.protocol.Build;
    import org.gradle.launcher.daemon.protocol.BuildStarted;
    import org.gradle.launcher.daemon.protocol.DaemonUnavailable;
    import org.gradle.launcher.daemon.protocol.Failure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

    // CHECK:      tf_device.parallel_execute
    // CHECK:      tf_device.launch
    // CHECK:      <{device = "/TPU:1"}>
    // CHECK:      tf.OpA
    // CHECK:      tf_device.launch
    // CHECK:      <{device = "/TPU:2"}>
    // CHECK:      tf.OpB
    // CHECK:      _parallel_execution_ids = "r0:0"
    // CHECK:      tf_executor.island
    // CHECK:      tf_device.parallel_execute
    // CHECK:      tf_device.launch
    // CHECK:      <{device = "/TPU:1"}>
    // CHECK:      tf.OpA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    }
    ```
    ### `-tf-extract-tpu-copy-with-dynamic-shape-op`
    
    _Extract the TPUCopyWithDynamicShapeOp out of the host launch and place it on device launch_
    
    This pass looks for TPUCopyWithDynamicShapeOp which wraps in a
    `tf_device.launch` with host device attribute. It extracts the ops and wrap
    them in `tf_device.launch` with tpu device attribute so that ops can be
    run on TPU instead of CPU while still being compiled on host.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

    import org.junit.platform.launcher.Launcher
    import org.junit.platform.launcher.LauncherDiscoveryRequest
    import org.junit.platform.launcher.PostDiscoveryFilter
    import org.junit.platform.launcher.TestExecutionListener
    import org.junit.platform.launcher.core.EngineDiscoveryOrchestrator
    import org.junit.platform.launcher.core.LauncherConfig
    import org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultTestLauncherTest.groovy

        def executor = Mock(AsyncConsumerActionExecutor)
        def connection = Mock(ConsumerConnection)
        def launcher = new DefaultTestLauncher(executor, Stub(ConnectionParameters))
    
        def "adding tests does not affect an operation in progress"() {
            given:
            launcher.withJvmTestClasses("test")
            when:
            launcher.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ExecuteBuild.java

    import org.gradle.launcher.daemon.logging.DaemonMessages;
    import org.gradle.launcher.daemon.protocol.Build;
    import org.gradle.launcher.daemon.server.api.DaemonCommandExecution;
    import org.gradle.launcher.daemon.server.stats.DaemonRunningStats;
    import org.gradle.launcher.exec.BuildActionExecutor;
    import org.gradle.launcher.exec.BuildActionParameters;
    import org.gradle.launcher.exec.BuildActionResult;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top