Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for 32x32 (0.08 sec)

  1. src/hash/crc32/gen_const_ppc64le.go

    		j += 2
    		fmt.Fprintf(w, "\n")
    	}
    
    	for i := (1024 * 2) - 128; i >= 0; i -= 128 {
    		a := reflect_bits(get_remainder(ref_poly, 32, uint(i+32)), 32)
    		b := reflect_bits(get_remainder(ref_poly, 32, uint(i+64)), 32)
    		c := reflect_bits(get_remainder(ref_poly, 32, uint(i+96)), 32)
    		d := reflect_bits(get_remainder(ref_poly, 32, uint(i+128)), 32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

      %0 = mhlo.constant dense<0xFF800000> : tensor<f32>
      %1 = mhlo.constant dense<0> : tensor<i32>
      %2 = "mhlo.iota"() <{iota_dimension = 0 : i64}> : () -> tensor<32xi32>
      %3 = "mhlo.reshape"(%2) : (tensor<32xi32>) -> tensor<1x32x1xi32>
      %4:2 = mhlo.reduce(%arg0 init: %0), (%3 init: %1) across dimensions = [1] : (tensor<1x32x1xf32>, tensor<1x32x1xi32>, tensor<f32>, tensor<i32>) -> (tensor<1x1xf32>, tensor<1x1xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/post-quantize.mlir

      %2 = "tfl.pseudo_qconst"() {qtype = tensor<32x!quant.uniform<i32:f32, 1.7052092479439231E-4>>, value = dense<0> : tensor<32xi32>} : () -> tensor<32x!quant.uniform<i32:f32, 1.7052092479439231E-4>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/runtime/profbuf.go

    //
    //	for {
    //		overflow = load(&b.overflow)
    //		if uint32(overflow) == 0 {
    //			// no pending entry
    //			break
    //		}
    //		time = load(&b.overflowTime)
    //		if cas(&b.overflow, overflow, ((overflow>>32)+1)<<32) {
    //			// pending entry cleared
    //			break
    //		}
    //	}
    //	if uint32(overflow) > 0 {
    //		emit entry for uint32(overflow), time
    //	}
    type profBuf struct {
    	// accessed atomically
    	r, w         profAtomic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %2 = mhlo.constant dense<[1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 15]> : tensor<32xi64>
      %3 = mhlo.constant dense<16> : tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "SRDconst", argLength: 1, reg: gp11, asm: "SRD", aux: "Int64"},       // unsigned arg0 >> auxInt, 0 <= auxInt < 64, 64 bit width
    		{name: "SRWconst", argLength: 1, reg: gp11, asm: "SRW", aux: "Int64"},       // unsigned arg0 >> auxInt, 0 <= auxInt < 32, 32 bit width
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/unicode/tables.go

    var CaseRanges = _CaseRanges
    var _CaseRanges = []CaseRange{
    	{0x0041, 0x005A, d{0, 32, 0}},
    	{0x0061, 0x007A, d{-32, 0, -32}},
    	{0x00B5, 0x00B5, d{743, 0, 743}},
    	{0x00C0, 0x00D6, d{0, 32, 0}},
    	{0x00D8, 0x00DE, d{0, 32, 0}},
    	{0x00E0, 0x00F6, d{-32, 0, -32}},
    	{0x00F8, 0x00FE, d{-32, 0, -32}},
    	{0x00FF, 0x00FF, d{121, 0, 121}},
    	{0x0100, 0x012F, d{UpperLower, UpperLower, UpperLower}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    	CiphertextSize       = k*encodingSize10 + encodingSize4
    	EncapsulationKeySize = encryptionKeySize
    	DecapsulationKeySize = decryptionKeySize + encryptionKeySize + 32 + 32
    	SharedKeySize        = 32
    	SeedSize             = 32 + 32
    )
    
    // A DecapsulationKey is the secret key used to decapsulate a shared key from a
    // ciphertext. It includes various precomputed values.
    type DecapsulationKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. cmd/encryption-v1.go

    	SSECustomerKeySize = 32
    
    	// SSEIVSize is the size of the IV data
    	SSEIVSize = 32 // 32 bytes
    
    	// SSEDAREPackageBlockSize - SSE dare package block size.
    	SSEDAREPackageBlockSize = 64 * 1024 // 64KiB bytes
    
    	// SSEDAREPackageMetaSize - SSE dare package meta padding bytes.
    	SSEDAREPackageMetaSize = 32 // 32 bytes
    
    )
    
    // KMSKeyID returns in AWS compatible KMS KeyID() format.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-SAME:                       %[[VAL_1:.*]]: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
    // CHECK:           %[[VAL_2:.*]] = "tf.AddV2"(%[[VAL_0]], %[[VAL_1]]) : (tensor<1x32x10x32xi32>, tensor<32xi32>) -> tensor<1x32x10x32xi32>
    // CHECK:           return %[[VAL_2]] : tensor<1x32x10x32xi32>
    // CHECK:         }
    func.func @biasAdd_NHWC(%arg0: tensor<1x32x10x32xi32>, %arg1: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top