Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for CNT (0.02 sec)

  1. tensorflow/cc/framework/gradients_test.cc

      EXPECT_EQ(grad_result[0].NumElements(), 1);
      EXPECT_EQ(grad_result[0].flat<float>()(0), 17610.0f);
    }
    
    TEST_F(GradientsTest, AddSymbolicGradientsTest) {
      Scope scope = Scope::NewRootScope();
      for (int cnt = 0; cnt < 100; ++cnt) {
        int N = 5 + rand() % 10;
        // Construct forward graph.
        OutputList inputs;
        for (int i = 0; i < N; ++i) {
          auto a = Const(scope, i, {1});
          inputs.push_back(a);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_ppc64x.s

    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    // H3 = d + H3
    // H4 = e + H4
    // H5 = f + H5
    // H6 = g + H6
    // H7 = h + H7
    
    #define CTX	R3
    #define INP	R4
    #define END	R5
    #define TBL	R6
    #define CNT	R8
    #define LEN	R9
    #define TEMP	R12
    
    #define TBL_STRT R7 // Pointer to start of kcon table.
    
    #define R_x000	R0
    #define R_x010	R10
    #define R_x020	R25
    #define R_x030	R26
    #define R_x040	R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/runtime/os_linux.go

    	ts.setNsec(ns)
    	futex(unsafe.Pointer(addr), _FUTEX_WAIT_PRIVATE, val, unsafe.Pointer(&ts), nil, 0)
    }
    
    // If any procs are sleeping on addr, wake up at most cnt.
    //
    //go:nosplit
    func futexwakeup(addr *uint32, cnt uint32) {
    	ret := futex(unsafe.Pointer(addr), _FUTEX_WAKE_PRIVATE, cnt, nil, nil, 0)
    	if ret >= 0 {
    		return
    	}
    
    	// I don't know that futex wakeup can return
    	// EAGAIN or EINTR, but if it does, it would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/internal/zstd/block.go

    		}
    
    		if match > 0 {
    			if err := r.copyFromWindow(&rbr, offset, match); err != nil {
    				return err
    			}
    		}
    	}
    
    	r.buffer = append(r.buffer, litbuf...)
    
    	if rbr.cnt != 0 {
    		return r.makeError(off, "extraneous data after sequences")
    	}
    
    	return nil
    }
    
    // Copy match bytes from the decoded output, or the window, at offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/debug/elf/file.go

    		if vers != 1 {
    			break
    		}
    		cnt := f.ByteOrder.Uint16(d[i+2 : i+4])
    		fileoff := f.ByteOrder.Uint32(d[i+4 : i+8])
    		aux := f.ByteOrder.Uint32(d[i+8 : i+12])
    		next := f.ByteOrder.Uint32(d[i+12 : i+16])
    		file, _ := getString(str, int(fileoff))
    
    		var name string
    		j := i + int(aux)
    		for c := 0; c < int(cnt); c++ {
    			if j+16 > len(d) {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/archive/tar/reader.go

    	var (
    		cntNewline int64
    		buf        bytes.Buffer
    		blk        block
    	)
    
    	// feedTokens copies data in blocks from r into buf until there are
    	// at least cnt newlines in buf. It will not read more blocks than needed.
    	feedTokens := func(n int64) error {
    		for cntNewline < n {
    			if _, err := mustReadFull(r, blk[:]); err != nil {
    				return err
    			}
    			buf.Write(blk[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    cloudns.info cloudns.org cloudns.pro cloudns.pw cloudns.us cloudsite.builders cloudycluster.net club club.aero club.tw clubmed cm cn cn-north-1.eb.amazonaws.com.cn cn-northwest-1.eb.amazonaws.com.cn cn.com cn.eu.org cn.in cn.it cn.ua cn.vu cng.br cnpy.gdn cnt.br co co.ae co.ag co.am co.ao co.at co.bb co.bi co.bj co.bn co.business co.bw co.ca co.ci co.cl co.cm co.com co.cr co.cz co.dk co.education co.events co.financial co.gg co.gl co.gy co.hu co.id co.il co.im co.in co.ir co.it co.je co.jp co.ke co.kr co.krd...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top