Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 566 for yielded (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

    // the call arguments, and terminate the region with a yield. The arguments are
    // cast to the required type before the call. `use_region_args` control whether
    // the input arguments are used as is (for IfOp) or block arguments of the same
    // type as the input arguments are created and then used as call arguments (for
    // While).
    YieldOp CreateCall(Operation* op, func::FuncOp func, Region& caller_region,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. cni/pkg/install/install.go

    	// at this moment, and if not, yield. This is to catch other CNIs which might have mutated the file between
    	// the (theoretical) window after we initially install/write, but before we actually start the filewatch.
    	if err := checkValidCNIConfig(in.cfg, in.cniConfigFilepath); err != nil {
    		return nil
    	}
    
    	// If a file we are watching has a change event, yield and let caller check validity
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/reflectdata/helpers.go

    // expression that yields the *runtime._type value representing typ.
    func kindRType(pos src.XPos, typ *types.Type, k types.Kind) ir.Node {
    	base.AssertfAt(typ.Kind() == k, pos, "want %v type, have %v", k, typ)
    	return TypePtrAt(pos, typ)
    }
    
    // mapRType asserts that typ is a map type, and returns an expression
    // that yields the *runtime._type value representing typ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            removedNodes.empty
    
            where:
            vfsSpec << onlyDirectChildren(NO_COMMON_PREFIX + SAME_PATH + CHILD_IS_PREFIX)
        }
    
        def "querying the snapshot for non-existent child #vfsSpec.searchedPath yields a missing file (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            FileSystemLocationSnapshot foundSnapshot = initialRoot.getSnapshot(searchedPath, CASE_SENSITIVE).get() as FileSystemLocationSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        Block &GetBody() { return getOperation()->getRegion(0).front(); }
        YieldOp GetYield();
        bool WrapsSingleOp();
      }];
    
      let hasCanonicalizer = 1;
    
      let hasFolder = 1;
    }
    
    def TfExecutor_YieldOp : TfExecutor_Op<"yield",
        [Terminator, ControlOperandsAfterAllData, HasParent<"IslandOp">]> {
      let summary = [{
        The `tf_executor.yield` operation terminates and returns values for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

          }, {
            tf_device.return
          }) {} : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      [[ISLAND_0_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield {_parallel_execution_ids = "p0:0"}
    // CHECK:      [[ISLAND_1_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield {_parallel_execution_ids = "p0:1"}
    // CHECK:      tf_executor.fetch
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

     * Runs a [TaskRunner] in a controlled environment so that everything is sequential and
     * deterministic.
     *
     * This class ensures that at most one thread is running at a time. This is initially the JUnit test
     * thread, which yields its execution privilege while calling [runTasks], [runNextTask], or
     * [advanceUntil]. These functions don't return until the task threads are all idle.
     *
     * Task threads release their execution privilege in these ways:
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

          }, {
            tf_device.return
          }) {} : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      [[ISLAND_0_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield
    // CHECK:      [[ISLAND_1_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield
    // CHECK:      tf_executor.fetch [[ISLAND_0_CTRL]], [[ISLAND_1_CTRL]] :
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/switchn.mlir

            "tf_executor.yield"(%0) : (tensor<*xi32>) -> ()
          }) : () -> (tensor<*xi32>, !tf_executor.control)
          %outputs_4, %control_5 = "tf_executor.island"(%control_3) ({
            %0 = "tf.Const"() {device = "", value = dense<2.000000e+00> : tensor<f32>} : () -> tensor<f32>
            "tf_executor.yield"(%0) : (tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

            "tf.Yield"() : () -> ()
            }, {
            "tf.Yield"() : () -> ()
           }) {is_stateless = true} : (tensor<i1>) -> ()
           "tf.Yield"(%1) : (tensor<i1>) -> ()
        }, {
        ^bb0(%arg1: tensor<i32>, %arg2: tensor<?xf32>):
          "tf.IfRegion"(%0) ({
            %2 = "tf.B"() : () -> (tensor<f32>)
            "tf.Yield"() : () -> ()
            }, {
            "tf.Yield"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
Back to top