Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for MULTIPLY (0.12 sec)

  1. docs/en/docs/async.md

    * **Deep Learning**: this is a sub-field of Machine Learning, so, the same applies. It's just that there is not a single spreadsheet of numbers to multiply, but a huge set of them, and in many cases, you use a special processor to build and / or use those models.
    
    ### Concurrency + Parallelism: Web + Machine Learning
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    		p.firstProg = prog
    	} else {
    		p.lastProg.Link = prog
    	}
    	p.lastProg = prog
    	if doLabel {
    		p.pc++
    		for _, label := range p.pendingLabels {
    			if p.labels[label] != nil {
    				p.errorf("label %q multiply defined", label)
    				return
    			}
    			p.labels[label] = prog
    		}
    		p.pendingLabels = p.pendingLabels[0:0]
    	}
    	prog.Pc = p.pc
    	if *flags.Debug {
    		fmt.Println(p.lineNum, prog)
    	}
    	if testOut != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

        bool is_signed, bool narrow_range, bool legacy_float_scale = false,
        bool use_fake_quant_num_bits = false);
    
    // Returns the quantized type of a bias input, given the quantized types of
    // other operands which are multiply-accumulated (the bias is added to the
    // accumulated value).
    quant::QuantizedType GetUniformQuantizedTypeForBias(
        const std::vector<quant::QuantizedType>& op_types, int adjusted_quant_dim,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_arm64.s

    	AESMC	B0.B16, B0.B16
    initEncFinish:
    	VLD1	(KS), [T0.B16, T1.B16, T2.B16]
    	AESE	T0.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    	AESE	T1.B16, B0.B16
    	VEOR	T2.B16, B0.B16, B0.B16
    
    	VREV64	B0.B16, B0.B16
    
    	// Multiply by 2 modulo P
    	VMOV	B0.D[0], I
    	ASR	$63, I
    	VMOV	I, T1.D[0]
    	VMOV	I, T1.D[1]
    	VAND	POLY.B16, T1.B16, T1.B16
    	VUSHR	$63, B0.D2, T2.D2
    	VEXT	$8, ZERO.B16, T2.B16, T2.B16
    	VSHL	$1, B0.D2, B0.D2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/framework_test.go

    // job and list of current volumes/claims is equal to list of expected
    // volumes/claims (with ~10 second timeout).
    func (r *volumeReactor) waitTest(test controllerTest) error {
    	// start with 10 ms, multiply by 2 each step, 10 steps = 10.23 seconds
    	backoff := wait.Backoff{
    		Duration: 10 * time.Millisecond,
    		Jitter:   0,
    		Factor:   2,
    		Steps:    10,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. cmd/object-api-utils.go

    			res[i] = &di
    		}
    	}
    	return res
    }
    
    // hasSpaceFor returns whether the disks in `di` have space for and object of a given size.
    func hasSpaceFor(di []*DiskInfo, size int64) (bool, error) {
    	// We multiply the size by 2 to account for erasure coding.
    	size *= 2
    	if size < 0 {
    		// If no size, assume diskAssumeUnknownSize.
    		size = diskAssumeUnknownSize
    	}
    
    	var available uint64
    	var total uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	// The way we calculate is as follows:
    	// 1. Sum all timeouts across all KMS plugins. (check kmsPrefixTransformer for differences between v1 and v2)
    	// 2. Multiply that by 2 (to allow for some buffer)
    	// The reason we sum all timeout is because kmsHealthChecker() will run all health checks serially
    	return &EncryptionConfiguration{
    		Transformers:              transformers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    	MOVW	x+0(FP), R0
    	CALL	runtime·usplitR0(SB)
    	MOVW	R0, q+4(FP)
    	MOVW	R1, r+8(FP)
    	RET
    
    // R0, R1 = R0/1000000, R0%1000000
    TEXT runtime·usplitR0(SB),NOSPLIT,$0
    	// magic multiply to avoid software divide without available m.
    	// see output of go tool compile -S for x/1000000.
    	MOVW	R0, R3
    	MOVW	$1125899907, R1
    	MULLU	R1, R0, (R0, R1)
    	MOVW	R0>>18, R0
    	MOVW	$1000000, R1
    	MULU	R0, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_arm64.s

    	LDx(z1in)
    	LDy(y1in)
    	CALL	p256MulInternal<>(SB)
    	p256MulBy2Inline
    	STx(z3out)
    
    	LDy(x1in)
    	LDx(zsqr)
    	CALL	p256SubInternal<>(SB)
    	LDy(m)
    	CALL	p256MulInternal<>(SB)
    
    	// Multiply by 3
    	p256MulBy2Inline
    	p256AddInline
    	STx(m)
    
    	LDy(y1in)
    	p256MulBy2Inline
    	CALL	p256SqrInternal<>(SB)
    	STy(s)
    	MOVD	y0, x0
    	MOVD	y1, x1
    	MOVD	y2, x2
    	MOVD	y3, x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "LoweredNilCheck", argLength: 2, reg: regInfo{inputs: []regMask{gp | sp | sb}, clobbers: tmp}, clobberFlags: true, nilCheck: true, faultOnNilArg0: true},
    		// Round ops to block fused-multiply-add extraction.
    		{name: "LoweredRound32F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    		{name: "LoweredRound64F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top