Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for arithmetic (0.42 sec)

  1. doc/go_spec.html

    x == y+1 &amp;&amp; &lt;-chanInt &gt; 0  // (x == (y+1)) && ((<-chanInt) > 0)
    </pre>
    
    
    <h3 id="Arithmetic_operators">Arithmetic operators</h3>
    <p>
    Arithmetic operators apply to numeric values and yield a result of the same
    type as the first operand. The four standard arithmetic operators (<code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>) apply to
    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. src/cmd/compile/internal/ssagen/ssa.go

    		// The only thing that needs evaluating is the index we're looking up.
    		idx := s.expr(n.Idx)
    		unsigned := idx.Type.IsUnsigned()
    
    		// Extend so we can do everything in uintptr arithmetic.
    		t := types.Types[types.TUINTPTR]
    		idx = s.conv(nil, idx, idx.Type, t)
    
    		// The ending condition for the current block decides whether we'll use
    		// the jump table at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          return rewriter.notifyMatchFailure(
              op, "element type must be float, int, or complex type");
        }
    
        // Convert to an accumulation type to not lose precision when doing
        // repeated arithmetic operations.
        Type reduce_element_type =
            is_accumulation ? GetAccumulationType(element_type) : element_type;
        auto casted_input =
            rewriter.create<ConvertOp>(loc, op.getInput(), reduce_element_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top