Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 130 for multiplication (0.26 sec)

  1. doc/go_spec.html

    statements, not expressions, they fall
    outside the operator hierarchy.
    As a consequence, statement <code>*p++</code> is the same as <code>(*p)++</code>.
    </p>
    <p>
    There are five precedence levels for binary operators.
    Multiplication operators bind strongest, followed by addition
    operators, comparison operators, <code>&amp;&amp;</code> (logical AND),
    and finally <code>||</code> (logical OR):
    </p>
    
    <pre class="grammar">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. docs/fr/docs/async.md

    * L'apprentissage automatique (ou **Machine Learning**) : cela nécessite de nombreuses multiplications de matrices et vecteurs. Imaginez une énorme feuille de calcul remplie de nombres que vous multiplierez entre eux tous au même moment.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    int64_t LogisticOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      // As a very rough ballpark, the cost of evaluating a math function
      // such as tanh or logistic is about 32 multiplications, and about as
      // many additions/subtractions. (Just a power-of-two order-of-magnitude
      // from looking at actual implementations that we use in runtime/code).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. src/crypto/rsa/rsa.go

    	}
    	if modulus.Cmp(priv.N) != 0 {
    		return errors.New("crypto/rsa: invalid modulus")
    	}
    
    	// Check that de ≡ 1 mod p-1, for each prime.
    	// This implies that e is coprime to each p-1 as e has a multiplicative
    	// inverse. Therefore e is coprime to lcm(p-1,q-1,r-1,...) =
    	// exponent(ℤ/nℤ). It also implies that a^de ≡ a mod p as a^(p-1) ≡ 1
    	// mod p. Thus a^de ≡ a mod n for all a coprime to n, as required.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    * **Machine Learning**: it normally requires lots of "matrix" and "vector" multiplications. Think of a huge spreadsheet with numbers and multiplying all of them together at the same time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    00D6          ; mapped                 ; 00F6          # 1.1  LATIN CAPITAL LETTER O WITH DIAERESIS
    00D7          ; valid                  ;      ; NV8    # 1.1  MULTIPLICATION SIGN
    00D8          ; mapped                 ; 00F8          # 1.1  LATIN CAPITAL LETTER O WITH STROKE
    00D9          ; mapped                 ; 00F9          # 1.1  LATIN CAPITAL LETTER U WITH GRAVE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	res+0(FP), res_ptr
    	MOVD	in+8(FP), a_ptr
    
    	MOVD	p256const0<>(SB), const0
    	MOVD	p256const1<>(SB), const1
    
    	LDP	0*16(a_ptr), (acc0, acc1)
    	LDP	1*16(a_ptr), (acc2, acc3)
    	// Only reduce, no multiplications are needed
    	// First reduction step
    	ADDS	acc0<<32, acc1, acc1
    	LSR	$32, acc0, t0
    	MUL	acc0, const1, t1
    	UMULH	acc0, const1, acc0
    	ADCS	t0, acc2
    	ADCS	t1, acc3
    	ADC	$0, acc0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    	s := uint(0)
    	for 1<<s < x {
    		s++
    	}
    	return 1 << s
    }
    
    // Called from runtime·morestack when more stack is needed.
    // Allocate larger stack and relocate to new stack.
    // Stack growth is multiplicative, for constant amortized cost.
    //
    // g->atomicstatus will be Grunning or Gscanrunning upon entry.
    // If the scheduler is trying to stop this g, then it will set preemptStop.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_amd64.s

    	MOVQ res+0(FP), res_ptr
    	MOVQ in+8(FP), x_ptr
    
    	MOVQ (8*0)(x_ptr), acc0
    	MOVQ (8*1)(x_ptr), acc1
    	MOVQ (8*2)(x_ptr), acc2
    	MOVQ (8*3)(x_ptr), acc3
    	XORQ acc4, acc4
    
    	// Only reduce, no multiplications are needed
    	// First stage
    	MOVQ acc0, AX
    	MOVQ acc0, t1
    	SHLQ $32, acc0
    	MULQ p256const1<>(SB)
    	SHRQ $32, t1
    	ADDQ acc0, acc1
    	ADCQ t1, acc2
    	ADCQ AX, acc3
    	ADCQ DX, acc4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/popper.min.js.map

    one (or more) white spaces.<br />\n   * The latter is a deprecated method because it leads to confusion and will be\n   * removed in v2.<br />\n   * Additionally, it accepts additions and subtractions between different units.\n   * Note that multiplications and divisions aren't supported.\n   *\n   * Valid examples are:\n   * ```\n   * 10\n   * '10%'\n   * '10, 10'\n   * '10%, 10'\n   * '10 + 10%'\n   * '10 - 5vh + 3%'\n   * '-10px + 5vh, 5px - 6%'\n   * ```\n   * > **NB**: If you desire to apply...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top