Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 567 for yield4x (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/reflect/iter.go

    			break
    		}
    		return func(yield func(Value) bool) {
    			v = v.Elem()
    			for i := range v.Len() {
    				if !yield(ValueOf(i)) {
    					return
    				}
    			}
    		}
    	case Array, Slice:
    		return func(yield func(Value) bool) {
    			for i := range v.Len() {
    				if !yield(ValueOf(i)) {
    					return
    				}
    			}
    		}
    	case String:
    		return func(yield func(Value) bool) {
    			for i := range v.String() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

          tf_executor.yield
        }
        %island2 = tf_executor.island(%island1) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        %island3 = tf_executor.island(%island2) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        %island4:2 = tf_executor.island(%island3) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

      %0:2 = tf_executor.graph {
        %1:2 = tf_executor.island {
          tf_executor.yield %arg1 : tensor<i1>
        }
        %2:2 = tf_executor.island {
          tf_executor.yield %arg0 : tensor<i1>
        }
        %3:2 = tf_executor.island {
          tf_executor.yield %1#0 : tensor<i1>
        }
        %4:2 = tf_executor.island {
          tf_executor.yield %2#0 : tensor<i1>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      "tfl.if"(%arg0) (
      {
        // then
        ^bb0:
         "tfl.yield"() : () -> ()
      },
      {
        // else
       ^bb0:
        "tfl.yield"() : () -> ()
      }) : (tensor<1xi1>) -> ()
      func.return
    }
    // CHECK-NEXT: %[[CONTROL:.*]] = tfl.control_node controls "tfl.if"
    // CHECK-NEXT: "tfl.yield"() : () -> ()
    // CHECK-NEXT: }, {
    // CHECK-NEXT: "tfl.yield"() : () -> ()
    // CHECK-NEXT: }) : (tensor<1xi1>) -> ()
    // CHECK-NEXT: return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. src/runtime/race/testdata/rangefunc_test.go

    	"testing"
    )
    
    type Seq2[T1, T2 any] func(yield func(T1, T2) bool)
    
    // ofSliceIndex returns a Seq over the elements of s. It is equivalent
    // to range s, except that it splits s into two halves and iterates
    // in two separate goroutines.  This is racy if yield is racy, and yield
    // will be racy if it contains an early exit.
    func ofSliceIndex[T any, S ~[]T](s S) Seq2[int, T] {
    	return func(yield func(int, T) bool) {
    		c := make(chan bool, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

      tf_executor.graph {
        %0 = tf_executor.island {
          tf_executor.yield
        }
        %1 = tf_executor.island(%0) {
          %3 = "tf.opA"() : () -> tensor<i1>
          tf_executor.yield
        }
        %2 = tf_executor.island(%0, %1) {
          %4 = "tf.opB"() : () -> tensor<i1>
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

        %1 = "tf.OpA"() {is_stateless = true} : () -> tensor<i1>
        "tf.Yield"(%1) : (tensor<i1>) -> ()
      }, {
      ^bb0(%arg2: tensor<*xf32>, %arg3: tensor<*xf32>):
        %1 = "tf.OpB"(%arg2) {is_stateless = true} : (tensor<*xf32>) -> tensor<*xf32>
        %2 = "tf.OpC"(%arg3) {is_stateless = true} : (tensor<*xf32>) -> tensor<*xf32>
        "tf.Yield"(%1, %2) : (tensor<*xf32>, tensor<*xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top