Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for arithmetic (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOV(B|H|W)Zreg z:(ANDconst [c] (MOVBZload ptr x))) => z
    (MOV(B|H|W)Zreg z:(AND y (MOV(B|H|W)Zload ptr x))) => z
    (MOV(H|W)Zreg z:(ANDconst [c] (MOVHZload ptr x))) => z
    (MOVWZreg z:(ANDconst [c] (MOVWZload ptr x))) => z
    
    // Arithmetic constant ops
    
    (ADD x (MOVDconst <t> [c])) && is32Bit(c) && !t.IsPtr() => (ADDconst [c] x)
    (ADDconst [c] (ADDconst [d] x)) && is32Bit(c+d) => (ADDconst [c+d] x)
    (ADDconst [0] x) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mac_str = absl::StrFormat("%.3f G ",
                                    static_cast<double>(ops_count / 2) / billion);
        }
        LOG(INFO) << "Estimated count of arithmetic ops: " << flops_str
                  << " ops, equivalently " << mac_str << " MACs";
      }
    
      std::string model_description;
      if (auto attr = module_->getAttrOfType<StringAttr>("tfl.description")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    // substitution and hard-codes the <blank> delimiters instead of reading them
    // from LC_LOCALE.
    func splitPkgConfigOutput(out []byte) ([]string, error) {
    	if len(out) == 0 {
    		return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_BroadcastToOp : TF_Op<"BroadcastTo", [Pure]> {
      let summary = "Broadcast an array for a compatible shape.";
    
      let description = [{
    Broadcasting is the process of making arrays to have compatible shapes
    for arithmetic operations. Two shapes are compatible if for each
    dimension pair they are either equal or one of them is one.
    
    For example:
    
    >>> x = tf.constant([[1, 2, 3]])   # Shape (1, 3,)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. RELEASE.md

        9 and CUDA 9.1 sometimes does not properly compute the carry bit when
        decomposing 64-bit address calculations with large offsets (e.g. `load [x +
        large_constant]`) into 32-bit arithmetic in SASS.
    
        As a result, these versions of `ptxas` miscompile most XLA programs which
        use more than 4GB of temp memory. This results in garbage results and/or
        `CUDA_ERROR_ILLEGAL_ADDRESS` failures.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top