Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 824 for launch0 (0.36 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_composite_resource_ops.mlir

         // CHECK:      %[[RESOURCE_OUT:.*]] = "tf_device.launch"()
         // CHECK-SAME: TPU_REPLICATED_CORE_0
         // CHECK-NEXT:   %[[READ_OUT:.*]] = "tf.ReadVariableOp"(%[[RI_0]])
         // CHECK-NEXT:   tf_device.return %[[READ_OUT]]
         %0 = "tf.ReadVariableOp"(%arg1) : (tensor<*x!tf_type.resource<tensor<4xf32>>>) -> tensor<4xf32>
         %1 = "tf.A"() : () -> (tensor<2x!tf_type.string>)
         "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

          return %cluster : tensor<i32>
        ```
    
        becomes:
    
        ```mlir
        %0 = "tf_device.launch"() ( {
          %3 = "tf.A"(%arg0) : (tensor<i32>) -> tensor<i32>
          tf_device.return %3 : tensor<i32>
        }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> tensor<i32>
        %1 = "tf_device.cluster"() ( {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/device_canonicalize.mlir

    // Test empty launch with no results is folded away.
    // CHECK-LABEL: func @empty_launch_no_results
    func.func @empty_launch_no_results() {
      "tf_device.launch"() ({
        tf_device.return
      }) {device = "device"} : () -> ()
      func.return
    }
    
    // CHECK-NOT: tf_device.launch
    
    
    // Test empty launch with some results is folded away.
    // CHECK-LABEL: func @empty_launch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

            %2 = "tf.A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
    
            // Note that tf.C is moved before tf_device.launch.
            // CHECK: %[[C_OUTPUT:[0-9]*]] = "tf.C"(%[[ARG_0]])
    
            // CHECK: %[[TPU0_OUTPUT:[0-9]*]] = "tf_device.launch"
            // CHECK: <{device = "tpu0"}>
            // CHECK: %[[B_OUTPUT:[0-9]*]] = "tf.B"(%[[A_OUTPUT]]) : (tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.td

        after a _TPUCompileMlir op if there is no predecessor _TPUCompileMlir op.
        Both the embedding op and compile op are assumed to be wrapped in separate
        tf_device.launch() ops. This is because the embedding op is head outside
        compiled and the compile op is wrapped in launch to execute on host
        during TPURewritePass.
    
        For example, the tf.OpA with the `mini_batch_splits` attribute will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         * Returns the extra arguments to use to launch the JVM for the process. Does not include system properties and the
         * minimum/maximum heap size.
         *
         * @return The immutable list of arguments. Returns an empty list if there are no arguments.
         */
        @Nullable @Optional @Input
        List<String> getJvmArgs();
    
        /**
         * Sets the extra arguments to use to launch the JVM for the process. System properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/numcpu_freebsd.go

    		return fmt.Errorf("invalid cpuset output '%s'", listString)
    	}
    	// Launch FreeBSDNumCPUHelper() with specified CPUs list.
    	cmd := exec.Command("cpuset", "-l", cListString, os.Args[0], "FreeBSDNumCPUHelper")
    	cmdline := strings.Join(cmd.Args, " ")
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		return fmt.Errorf("fail to launch child '%s', error: %s, output: %s", cmdline, err, output)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK: %[[COMPILE_OUTPUT:[0-9]*]]:3 = "tf_device.launch"
        // CHECK-NEXT: "tf._TPUCompileMlir"()
        // CHECK: "tf_device.launch"
        // CHECK: "tf.TPUCompileSucceededAssert"(%[[COMPILE_OUTPUT]]#0)
        // CHECK: [[PARALLEL_EXECUTE_OUTPUT:[0-9]*]]:2 = "tf_device.parallel_execute"
        // CHECK: "tf_device.launch"() <{device = "/job:worker/replica:0/task:0/device:TPU:0"}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.daemon.server.api.DaemonCommandAction;
    import org.gradle.launcher.daemon.server.api.HandleInvalidateVirtualFileSystem;
    import org.gradle.launcher.daemon.server.api.HandleReportStatus;
    import org.gradle.launcher.daemon.server.api.HandleStop;
    import org.gradle.launcher.daemon.server.exec.CleanUpVirtualFileSystemAfterBuild;
    import org.gradle.launcher.daemon.server.exec.DaemonCommandExecuter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. 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)
Back to top