Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for __bits (1.36 sec)

  1. src/hash/crc32/crc32_table_ppc64le.s

    // Code generated by "go run gen_const_ppc64le.go"; DO NOT EDIT.
    
    #include "textflag.h"
    
    	/* Reduce 262144 kbits to 1024 bits */
    	/* x^261184 mod p(x), x^261120 mod p(x) */
    DATA ·IEEEConst+0(SB)/8,$0x0000000099ea94a8
    DATA ·IEEEConst+8(SB)/8,$0x00000001651797d2
    
    	/* x^260160 mod p(x), x^260096 mod p(x) */
    DATA ·IEEEConst+16(SB)/8,$0x00000000945a8420
    DATA ·IEEEConst+24(SB)/8,$0x0000000021e0d56c
    
    	/* x^259136 mod p(x), x^259072 mod p(x) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                max=ops.convert_to_tensor(self._max[1]),
                num_bits=8,
                narrow_range=False,
            )
    
            out = math_ops.matmul(x, y)
            if self._bias is not None:
              out = nn_ops.bias_add(out, self._bias)
            if activation_fn is not None:
              out = activation_fn(out)
            out = array_ops.fake_quant_with_min_max_vars(
                out,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	data := NewAt(typ.Elem(), val.UnsafePointer())
    	heapBits := GCBits(data.Interface())
    	// Repeat the bitmap for the slice size, trimming scalars in
    	// the last element.
    	bits = trimBitmap(rep(cap, bits))
    	if bytes.Equal(heapBits, bits) {
    		return
    	}
    	if len(heapBits) > len(bits) && bytes.Equal(heapBits[:len(bits)], bits) {
    		// Just the prefix matching is OK.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top