Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stack192 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
      %stack = "tf.StackV2"(%max_size) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %stack2 = "tf.StackV2"(%max_size) {elem_type = f32, stack_name = "s2"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %if_op = "tf.If"(%arg0, %stack, %stack2) {then_branch = @if_then, else_branch = @if_else, is_stateless = false}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      %2 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %3 = "tf.Const"() {value = dense<2> : tensor<i32>} : () -> tensor<i32>
      %4 = "tf.StackV2"(%3) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %5:5 = "tfl.while"(%2, %3, %2, %4, %0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/runtime/chan_test.go

    }
    
    func TestShrinkStackDuringBlockedSend(t *testing.T) {
    	// make sure that channel operations still work when we are
    	// blocked on a channel send and we shrink the stack.
    	// NOTE: this test probably won't fail unless stack1.go:stackDebug
    	// is set to >= 1.
    	const n = 10
    	c := make(chan int)
    	done := make(chan struct{})
    
    	go func() {
    		for i := 0; i < n; i++ {
    			c <- i
    			// use lots of stack, briefly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
Back to top