Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 567 for yield4x (0.12 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

            %2 = "tf.Abs"(%asin) : (tensor<*xf32>) -> tensor<*xf32>
            "tf.Yield"(%2) : (tensor<*xf32>) -> ()
          }, {
            %2 = "tf.Neg"(%arg1) : (tensor<*xf32>) -> tensor<*xf32>
            "tf.Yield"(%2) : (tensor<*xf32>) -> ()
          }) { is_stateless = true } :  (tensor<i1>) -> tensor<*xf32>
    
        "tf.Yield"(%1) : (tensor<*xf32>) -> ()
        }, {
        // Outer Else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          tf_executor.yield %add1, %add2 : tensor<*xi32>, tensor<*xi32>
        }
        %island2:3 = tf_executor.island(%island1#2) {
          %sub = "tf.Sub"(%arg0, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
          %mul = "tf.Mul"(%sub, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
          tf_executor.yield %sub, %mul : tensor<*xi32>, tensor<*xi32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  4. src/iter/pull_test.go

    import (
    	"fmt"
    	. "iter"
    	"runtime"
    	"testing"
    )
    
    func count(n int) Seq[int] {
    	return func(yield func(int) bool) {
    		for i := range n {
    			if !yield(i) {
    				break
    			}
    		}
    	}
    }
    
    func squares(n int) Seq2[int, int64] {
    	return func(yield func(int, int64) bool) {
    		for i := range n {
    			if !yield(i, int64(i)*int64(i)) {
    				break
    			}
    		}
    	}
    }
    
    func TestPull(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

              func.call @ifregion_then(%id0, %var_handle) : (!tf_res, !tf_res) -> ()
              "tf.Yield"() : () -> ()
            }, {
              func.call @ifregion_else(%id0, %var_handle) : (!tf_res, !tf_res) -> ()
              "tf.Yield"() : () -> ()
            }) {is_stateless = false} : (tensor<i1>) -> ()
          tf_executor.yield
        }
        tf_executor.fetch %island : !tf_executor.control
      }
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  6. src/iter/iter.go

    // When called as seq(yield), seq calls yield(v) for each value v in the sequence,
    // stopping early if yield returns false.
    type Seq[V any] func(yield func(V) bool)
    
    // Seq2 is an iterator over sequences of pairs of values, most commonly key-value pairs.
    // When called as seq(yield), seq calls yield(k, v) for each pair (k, v) in the sequence,
    // stopping early if yield returns false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf-functional-to-executor.mlir

    // CHECK: tf_executor.graph {
    // CHECK:   %[[CONTROL:.*]] = tf_executor.island {
    // CHECK:     tf_executor.yield
    // CHECK:   }
    // CHECK:   tf_executor.fetch %[[CONTROL]] : !tf_executor.control
    // CHECK: }
    // CHECK: return
    
    func.func @graph_already() {
      tf_executor.graph {
        %control = tf_executor.island {
          tf_executor.yield
        }
        tf_executor.fetch %control : !tf_executor.control
      }
      func.return
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      // CHECK-SAME: _then_func_name = "testIf1Then"
      // CHECK-SAME: is_stateless = false
      // CHECK: [[Result0:%.*]] = func.call @testIf1Then
      // CHECK: "tf.Yield"([[Result0]])
      // CHECK: [[Result1:%.*]] = func.call @testIf1Else
      // CHECK: "tf.Yield"([[Result1]])
      // CHECK: _attr0 = 10
      // CHECK-SAME: _attr1 = true
      // CHECK-NOT: attr2 =
      // CHECK-NOT: else_branch
      // CHECK-NOT: then_branch
      // CHECK-SAME: }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. docs_src/dependencies/tutorial008_an_py39.py

    from fastapi import Depends
    
    
    async def dependency_a():
        dep_a = generate_dep_a()
        try:
            yield dep_a
        finally:
            dep_a.close()
    
    
    async def dependency_b(dep_a: Annotated[DepA, Depends(dependency_a)]):
        dep_b = generate_dep_b()
        try:
            yield dep_b
        finally:
            dep_b.close(dep_a)
    
    
    async def dependency_c(dep_b: Annotated[DepB, Depends(dependency_b)]):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 521 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/rewrite_tpu_embedding_ops.mlir

          "tf.Yield"(%0) : (tensor<512x256xf32>) -> ()
        }, {
          "tf.Yield"(%arg2) : (tensor<512x256xf32>) -> ()
        }) { is_stateless = true}: (tensor<i1>) -> tensor<512x256xf32>
        "tf.Yield"(%1) : (tensor<512x256xf32>) -> ()
      }, {
        "tf.Yield"(%arg2) : (tensor<512x256xf32>) -> ()
      }) { is_stateless = true}: (tensor<i1>) -> tensor<512x256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top