Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for add32a (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

                  %add1 = "tf.Add"(%arg0, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %add2 = "tf.Add"(%add1, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %res = "tf.Print"(%add2) { message = "add result" } : (tensor<*xi32>) -> (tensor<*xi32>)
                  tf_executor.yield %add1, %add2 : tensor<*xi32>, tensor<*xi32>
                }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		log.Fatal(err)
    	}
    	res2, err := ts.Client().Get(ts.URL)
    	if err != nil {
    		log.Fatal(err)
    	}
    	addr1 := res1.Header.Get("X-Addr")
    	addr2 := res2.Header.Get("X-Addr")
    	if addr1 == "" || addr1 != addr2 {
    		t.Errorf("addr1, addr2 = %q, %q; want same", addr1, addr2)
    	}
    }
    
    func TestHijackBeforeRequestBodyRead(t *testing.T) {
    	run(t, testHijackBeforeRequestBodyRead, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top