Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 839 for launch0 (0.46 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      // CHECK-NOT: "tf_device.launch"
      // CHECK: "tf.opA"
      "tf.opA"() {device = ""} : () -> tensor<i1>
      func.return
    }
    
    // Tests that an op not in tf dialect (tf_device.launch) with device attribute is not wrapped in `tf_device.launch`.
    // Also tests that a `tf_device.launch` is not rewrapped.
    // CHECK-LABEL: func @non_tf_op
    func.func @non_tf_op() {
      // CHECK: "tf_device.launch"
      // CHECK-NOT "tf_device.launch"
      // CHECK: "tf.opA"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu-dynamic-layout-pass.mlir

    func.func @non_replicated(%arg0: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32> {
      // CHECK: %[[COMPILE:.*]]:2 = "tf_device.launch"
      // CHECK-NEXT: "tf._TPUCompileMlir"()
      %compile:2 = "tf_device.launch"() ({
        %1:2 = "tf._TPUCompileMlir"() {
          NumDynamicShapes = 0 : i64,
          // The metadata encodes 2 parameter and two return values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu-merge-variables-with-execute.mlir

      %read2 = "tf.ReadVariableOp"(%arg2) : (tensor<*x!tf_type.resource<tensor<16xf32>>>) -> tensor<16xf32>
      // CHECK: %[[COMPILE:.*]]:2 = "tf_device.launch"
      %compile:2 = "tf_device.launch"() ({
          // CHECK: tf._TPUCompileMlir
          %0:2 = "tf._TPUCompileMlir"() {
            metadata = "",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/replica_id_to_device_ordinal.mlir

          %0 = tf_executor.island {
            "tf_device.launch"() ({
              %1 = "tf.opA"() : () -> tensor<!tf_type.string>
              "tf.EnqueueTPUEmbeddingArbitraryTensorBatch"(%1){_xla_replica_id = 0 : i64, device_ordinal = -1 : i64} : (tensor<!tf_type.string>) -> ()
              tf_device.return
            }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> ()
            "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      }
    
      // Replaces each launch function call together with its neighboring
      // XlaClusterOutput nodes with a XlaLaunch node.
      for (Node* launch : launch_nodes) {
        TF_ASSIGN_OR_RETURN(const XlaFunctionInfo xla_function_info,
                            get_xla_function_info(*launch));
    
        std::vector<const Edge*> in_edges;
        TF_RETURN_IF_ERROR(launch->input_edges(&in_edges));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

      // CHECK-LABEL: func @head_single_outside_compiled_op
      func.func @head_single_outside_compiled_op(%arg0: tensor<i32>) {
        // CHECK:      "tf_device.launch"
        // CHECK-SAME: device = "/job:worker/replica:0/task:0/device:CPU:0"
        // CHECK-NEXT:   "tf.A"
        // CHECK-NOT:    _xla_outside_compilation
        // CHECK-NEXT:   tf_device.return
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    }
    
    // LoadEncryptionConfig parses and validates the encryption config specified by filepath.
    // It may launch multiple go routines whose lifecycle is controlled by ctx.
    // In case of an error, the caller is responsible for canceling ctx to clean up any go routines that may have been launched.
    // If reload is true, or KMS v2 plugins are used with no KMS v1 plugins, the returned slice of health checkers will always be of length 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_launch_func_to_tf_call.cc

      ModuleOp module = getOperation();
      module.walk([&](tf_device::LaunchFuncOp launch) {
        OpBuilder builder(launch);
        auto call_op = builder.create<TF::PartitionedCallOp>(
            module.getLoc(), launch.getResultTypes(), launch.getOperands(),
            SymbolRefAttr::get(builder.getContext(), launch.getFunc()),
            /*config=*/builder.getStringAttr(""),
            /*config_proto=*/builder.getStringAttr(""),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 21:08:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/go/doc/testdata/testing.1.golden

    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    	func (b *B) StopTimer()
    
    	// launch launches the benchmark function. It gradually increases ...
    	func (b *B) launch()
    
    	// log generates the output. It's always at the same stack depth. 
    	func (c *B) log(s string)
    
    	// 
    	func (b *B) nsPerOp() int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

          "tf_device.launch"() ( {
            "tf.TPUCompileSucceededAssert"(%0#0) : (tensor<!tf_type.string>) -> ()
            tf_device.return
          }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> ()
          %1 = "tf_device.launch"() ( {
            %2 = "tf.TPUExecute"(%arg0, %0#1) : (tensor<i8>, tensor<3x!tf_type.string>) -> tensor<i8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top