Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Multiplication (0.14 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - Added container filesystem to the `ImageFsInfoResponse`. ([#120914](https://github.com/kubernetes/kubernetes/pull/120914), [@kannon92](https://github.com/kannon92))
    - Added multiplication functionality to `Quantity`. ([#117411](https://github.com/kubernetes/kubernetes/pull/117411), [@tenzen-y](https://github.com/tenzen-y))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // Let v = [ 4  6 ]^T  be the output gradient (^T = transposed). Then the
    // average pool gradient is given by
    //    Df^T * v = [ 4/3  4/3  13/3  3 ]^T
    // Instead of a matrix-vector-multiplication we can utilize the sparsity and
    // structure of Df by using the 3-step approach from above:
    // 1. Divide output gradient v by window counts: [ 4/3  6/2 ]^T
    // 2. Add appropriate padding: [ 0  0  4/3  0  3  0 ]^T
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. 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 (0)
Back to top