Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Inits (0.09 sec)

  1. tensorflow/c/c_api.h

      int64_t list_size;
    
      // Type of elements of the list if is_list != 0.
      // Type of the single value stored in the attribute if is_list == 0.
      TF_AttrType type;
    
      // Total size the attribute value.
      // The units of total_size depend on is_list and type.
      // (1) If type == TF_ATTR_STRING and is_list == 0
      //     then total_size is the byte size of the string
      //     valued attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	"math/bits"
    	"unsafe"
    )
    
    const (
    	moveSpills = iota
    	logSpills
    	regDebug
    	stackDebug
    )
    
    // distance is a measure of how far into the future values are used.
    // distance is measured in units of instructions.
    const (
    	likelyDistance   = 1
    	normalDistance   = 10
    	unlikelyDistance = 100
    )
    
    // regalloc performs register allocation on f. It sets f.RegAlloc
    // to the resulting allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    				continue
    			}
    
    			lib.Textp = append(lib.Textp, sym.LoaderSym(gi))
    		}
    	}
    
    	// Now assemble global textp, and assign text symbols to units.
    	for _, doInternal := range [2]bool{true, false} {
    		for idx, lib := range libs {
    			if intlibs[idx] != doInternal {
    				continue
    			}
    			lists := [2][]sym.LoaderSym{lib.Textp, lib.DupTextSyms}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top