Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for Fpack (0.08 sec)

  1. guava/src/com/google/common/collect/ImmutableSet.java

        }
      }
    
      // We use power-of-2 tables, and this is the highest int that's a power of 2
      static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.7;
    
      // If the set has this many elements, it will "max out" the table size
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

      EQUAL = 71,
      NOT_EQUAL = 72,
      LOG = 73,
      SUM = 74,
      SQRT = 75,
      RSQRT = 76,
      SHAPE = 77,
      POW = 78,
      ARG_MIN = 79,
      FAKE_QUANT = 80,
      REDUCE_PROD = 81,
      REDUCE_MAX = 82,
      PACK = 83,
      LOGICAL_OR = 84,
      ONE_HOT = 85,
      LOGICAL_AND = 86,
      LOGICAL_NOT = 87,
      UNPACK = 88,
      REDUCE_MIN = 89,
      FLOOR_DIV = 90,
      REDUCE_ANY = 91,
      SQUARE = 92,
      ZEROS_LIKE = 93,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

    DECL_CONVERT_OP(ConcatV2);
    DECL_CONVERT_OP(BatchMatMul);
    DECL_CONVERT_OP(BatchMatMulV2);
    DECL_CONVERT_OP(BatchMatMulV3);
    DECL_CONVERT_OP(MatMul);
    DECL_CONVERT_OP(MatrixDiagV2);
    DECL_CONVERT_OP(MatrixDiagV3);
    DECL_CONVERT_OP(Pack);
    DECL_CONVERT_OP(Split);
    DECL_CONVERT_OP(SplitV);
    DECL_CONVERT_OP(Unpack);
    DECL_CONVERT_OP(Conv3D);
    DECL_CONVERT_OP(Conv3DBackpropInputV2);
    
    #undef DECL_CONVERT_OP
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    // be left zeroed by creators of Prog lists.
    type Prog struct {
    	Ctxt     *Link     // linker context
    	Link     *Prog     // next Prog in linked list
    	From     Addr      // first source operand
    	RestArgs []AddrPos // can pack any operands that not fit into {Prog.From, Prog.To}, same kinds of operands are saved in order
    	To       Addr      // destination operand (second is RegTo2 below)
    	Pool     *Prog     // constant pool entry, for arm,arm64 back ends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/typecheck.go

    		defer tracePrint("typecheck", n)(&res)
    	}
    
    	lno := ir.SetPos(n)
    	defer func() { base.Pos = lno }()
    
    	// Skip typecheck if already done.
    	// But re-typecheck ONAME/OTYPE/OLITERAL/OPACK node in case context has changed.
    	if n.Typecheck() == 1 || n.Typecheck() == 3 {
    		switch n.Op() {
    		case ir.ONAME:
    			break
    
    		default:
    			return n
    		}
    	}
    
    	if n.Typecheck() == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    //
    // This algorithm evenly distribute CPUs across NUMA nodes in cases where more
    // than one NUMA node is required to satisfy the allocation. This is in
    // contrast to the takeByTopologyNUMAPacked algorithm, which attempts to 'pack'
    // CPUs onto NUMA nodes and fill them up before moving on to the next one.
    //
    // At a high-level this algorithm can be summarized as:
    //
    // For each NUMA single node:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Build scans can help you investigate build cache effectiveness.
    In the performance screen, the _"Build cache"_ tab shows you statistics about:
    
    * how many tasks interacted with a cache
    * which cache was used
    * transfer and pack/unpack rates for these cache entries
    
    image::performance/cache-performance.png[title="Inspecting the performance of the build cache for a build"]
    
    The _"Task execution"_ tab shows details about task cacheability.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    // sa[j/2] records its actual text instead of its length, so that if two such
    // substrings have matching “length,” the text need not be read at all.
    // The definition of “very short” is that the text bytes must pack into a uint32,
    // and the unsigned encoding e must be ≥ len(text), so that it can be
    // distinguished from a valid length.
    func length_8_32(text []byte, sa []int32, numLMS int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    	sc0 := scavChunkData{
    		gen:            gen,
    		inUse:          inUse,
    		lastInUse:      lastInUse,
    		scavChunkFlags: scavChunkFlags(flags),
    	}
    	scp := sc0.pack()
    	sc1 := unpackScavChunkData(scp)
    	return sc0 == sc1
    }
    
    const GTrackingPeriod = gTrackingPeriod
    
    var ZeroBase = unsafe.Pointer(&zerobase)
    
    const UserArenaChunkBytes = userArenaChunkBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test.go

    	}
    }
    
    // issue 7560
    
    func test7560(t *testing.T) {
    	// some mingw don't implement __packed__ correctly.
    	if C.offset7560() != 1 {
    		t.Skip("C compiler did not pack struct")
    	}
    
    	// C.misaligned should have x but then a padding field to get to the end of the struct.
    	// There should not be a field named 'y'.
    	var v C.misaligned
    	rt := reflect.TypeOf(&v).Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top