Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for conv2 (0.09 sec)

  1. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn1, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn2, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	if g, w := db.numOpen, 3; g != w {
    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.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)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return emitOptionalError(location, "invalid padding format provided");
      }
    
      // Output always have rank 4. All dimensions are initialized to
      // dynamic size and can be partially inferred.
      // TFL's conv2d is always NHWC format & the filter is OHWI.
      SmallVector<int64_t, 4> return_shape(4, ShapedType::kDynamic);
      return_shape[0] = input_ty.getDimSize(0);
      return_shape[3] = filter_ty.getDimSize(0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. src/encoding/json/testdata/code.json.gz

    897,"touches":3,"min_t":1228948796,"max_t":1236205616,"mean_t":1231544399},{"name":"animate-elem-46-t-expected.png","kids":[],"cl_weight":0.0005553709994722575,"touches":2,"min_t":1229478785,"max_t":1236205616,"mean_t":1232842200},{"name":"filters-conv-01-f-expected.png","kids":[],"cl_weight":0.0015634355156012897,"touches":3,"min_t":1228948796,"max_t":1236205616,"mean_t":1231544399},{"name":"pservers-grad-03-b-expected.png","kids":[],"cl_weight":0.0015634355156012897,"touches":3,"min_t":1228948...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top