Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for conv2 (0.05 sec)

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

          }
          func @_func(%input: tensor<2x112x112x12xf32>, %filter: tensor<7x7x3x64xf32>) {
            %filter_transform = "tf.Pad/tf.Transpose/tf.Reshape"(%filter): tensor<7x7x3x64xf32>) -> tensor<4x4x12x64xf32>
            %conv = "tf.Conv2D"(%input, %filter_transfrom) {strides = [1, 1, 1, 1]}: (tensor<2x112x112x12xf32>, tensor<4x4x12x64xf32>) -> tensor<2x112x112x64xf32>
          }
        }
        ```
    
    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

    	conn1 := <-conns
    
    	// Start another request and grab its connection
    	response2c := make(chan string, 1)
    	go fetch(2, response2c)
    	conn2 := <-conns
    
    	// Send a response on connection 2.
    	conn2.(*blockingRemoteAddrConn).addrs <- &net.TCPAddr{
    		IP: net.ParseIP("12.12.12.12"), Port: 12}
    
    	// ... and see it
    	response2 := <-response2c
    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