Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 855 for launch0 (0.39 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

      scope.graph()->AddEdge(u.node(), 0, launch, 4);
      scope.graph()->AddEdge(v.node(), 0, launch, 5);
      scope.graph()->AddEdge(w.node(), 0, launch, 6);
    
      auto out0 =
          ops::XlaClusterOutput(scope.WithOpName("Out0"), Output(launch, 0));
      auto out1 =
          ops::XlaClusterOutput(scope.WithOpName("Out1"), Output(launch, 1));
      auto out2 =
          ops::XlaClusterOutput(scope.WithOpName("Out2"), Output(launch, 2));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/launch_outlining.mlir

    }
    
    // CHECK: func private @[[LAUNCH]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    // CHECK: return %[[A_OUTPUT]]
    
    // -----
    
    // Tests launch attributes are copied over to launch_func.
    
    // CHECK-LABEL: func @launch_attrs
    func.func @launch_attrs() -> tensor<?xi32> {
      %0 = "tf_device.launch"() ({
        %1 = "tf.A"() : () -> tensor<?xi32>
        tf_device.return %1 : tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/replicate_invariant_op_hoisting.mlir

    // CHECK-NEXT:   tf_device.return %[[OP_A]]
    // CHECK:      %[[LAUNCH_B:[0-9]*]] = "tf_device.launch"
    // CHECK-SAME: device = "b"
    // CHECK-NEXT:   %[[OP_B:[0-9]*]] = "tf.opB"(%[[SHAPE]], %[[LAUNCH_A]])
    // CHECK-NEXT:   tf_device.return %[[OP_B]]
    // CHECK: tf_device.replicate([{{.*}}] as %[[RI:[a-z0-9]+]]: tensor<*xf32>)
    // CHECK-NEXT:   %[[LAUNCH_C:[0-9]*]] = "tf_device.launch"
    // CHECK-SAME:   device = "c"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. test-site/activator-launch-1.3.2.jar

    scala.Option, scala.collection.immutable.List); } xsbt/boot/Launch$$anonfun$xsbt$boot$Launch$$getScalaProvider0$2.class package xsbt.boot; public final synchronized class Launch$$anonfun$xsbt$boot$Launch$$getScalaProvider0$2 extends scala.runtime.AbstractFunction1 implements scala.Serializable { private final String scalaVersion$2; private final java.io.File lib$1; private scala.Option apply(RetrievedModule); public void Launch$$anonfun$xsbt$boot$Launch$$getScalaProvider0$2(Launch, String, java.io.File);...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      builder->setInsertionPointAfter(before_op);
      auto launch = builder->create<tf_device::LaunchOp>(
          before_op->getLoc(), builder->getStringAttr(host_device),
          launch_result_types);
      launch.getBody().push_back(launch_block);
    
      builder->setInsertionPointToEnd(&launch.GetBody());
      builder->create<tf_device::ReturnOp>(before_op->getLoc(), launch_results);
    
      return launch;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

     * <ul>
     * <li>Create an instance of {@code BuildLauncher} by calling {@link org.gradle.tooling.ProjectConnection#newBuild()}.
     * <li>Configure the launcher as appropriate.
     * <li>Call either {@link #run()} or {@link #run(ResultHandler)} to execute the build.
     * <li>Optionally, you can reuse the launcher to launch additional builds.
     * </ul>
     *
     * Example:
     * <pre class='autoTested'>
     * ProjectConnection connection = GradleConnector.newConnector()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/extract_tpu_copy_with_dynamic_shape_op.cc

    // Check if the TPUCopyWithDynamicShapeOp is valid.
    // 1. The op should be wrapped inside a launch op.
    // 2. The wrapped launch op should be placed on CPU.
    LogicalResult CheckOpIsValid(Operation* op) {
      auto launch_op = llvm::dyn_cast<tf_device::LaunchOp>(op->getParentOp());
      if (!launch_op) {
        op->emitError() << "TPUCopyWithDynamicShapeOp is not in a launch";
      }
      std::string device_str = launch_op.getDeviceAttr().getValue().str();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

      // Forward launch inner op results to launch op results.
      launch.replaceAllUsesWith(launch.GetBody().getTerminator()->getOperands());
    
      // For all inner ops, assign the launch device as a `device` attribute.
      if (failed(AssignDevicesInRegion(tf_dialect, launch, launch.getBody())))
        return failure();
    
      // Move all inner ops of the launch to the block containing the launch.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedSelector)
            }
    
            then:
            thrown(BuildException)
    
            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedTask)
            }
    
            then:
            thrown(BuildException)
        }
    
        def "Still can launch tasks from non-included subprojects"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.cc

      launch.getBody().push_back(new mlir::Block);
    
      builder->setInsertionPointToEnd(&launch.GetBody());
      builder->create<mlir::tf_device::ReturnOp>(loc, op->getResults());
    
      // Move op inside cluster.
      op->moveBefore(launch.GetBody().getTerminator());
    
      builder->restoreInsertionPoint(insert_point);
    
      return launch;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top