Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sqrt32 (0.18 sec)

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

    (Com(64|32|16|8) ...) => (MVN ...)
    
    // math package intrinsics
    (Abs         ...) => (FABSD   ...)
    (Sqrt        ...) => (FSQRTD  ...)
    (Ceil        ...) => (FRINTPD ...)
    (Floor       ...) => (FRINTMD ...)
    (Round       ...) => (FRINTAD ...)
    (RoundToEven ...) => (FRINTND ...)
    (Trunc       ...) => (FRINTZD ...)
    (FMA       x y z) => (FMADDD z x y)
    
    (Sqrt32 ...) => (FSQRTS ...)
    
    (Min(64|32)F ...) => (FMIN(D|S) ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Div64F x (Const64F <t> [c])) && reciprocalExact64(c) => (Mul64F x (Const64F <t> [1/c]))
    
    // rewrite single-precision sqrt expression "float32(math.Sqrt(float64(x)))"
    (Cvt64Fto32F sqrt0:(Sqrt (Cvt32Fto64F x))) && sqrt0.Uses==1 => (Sqrt32 x)
    
    (Sqrt (Const64F [c])) && !math.IsNaN(math.Sqrt(c)) => (Const64F [math.Sqrt(c)])
    
    // for rewriting results of some late-expanded rewrites (below)
    (SelectN [0] (MakeResult x ___)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
      return nullptr;
    }
    
    //===----------------------------------------------------------------------===//
    // SqrtOp
    //===----------------------------------------------------------------------===//
    
    OpFoldResult SqrtOp::fold(FoldAdaptor adaptor) {
      auto operands = adaptor.getOperands();
      Type result_type = getType();
      // Only constant fold for tensor of f32 is implemented.
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SoftplusGradOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SoftsignOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SoftsignGradOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SqrtOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SqrtGradOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SquareOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(StringStripOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(TanOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top