Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for sqrt32 (0.2 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. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "POPCNTL", argLength: 1, reg: gp11, asm: "POPCNTL", clobberFlags: true},
    
    		// SQRTSx computes sqrt(arg0)
    		// S = float32, D = float64
    		{name: "SQRTSD", argLength: 1, reg: fp11, asm: "SQRTSD"},
    		{name: "SQRTSS", argLength: 1, reg: fp11, asm: "SQRTSS"},
    
    		// ROUNDSD rounds arg0 to an integer depending on auxint
    		// 0 means math.RoundToEven, 1 means math.Floor, 2 math.Ceil, 3 math.Trunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpSignExt8to64:
    		return rewriteValueWasm_OpSignExt8to64(v)
    	case OpSlicemask:
    		return rewriteValueWasm_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpWasmF64Sqrt
    		return true
    	case OpSqrt32:
    		v.Op = OpWasmF32Sqrt
    		return true
    	case OpStaticCall:
    		v.Op = OpWasmLoweredStaticCall
    		return true
    	case OpStore:
    		return rewriteValueWasm_OpStore(v)
    	case OpSub16:
    		v.Op = OpWasmI64Sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		return true
    	case OpSignmask:
    		return rewriteValueMIPS_OpSignmask(v)
    	case OpSlicemask:
    		return rewriteValueMIPS_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpMIPSSQRTD
    		return true
    	case OpSqrt32:
    		v.Op = OpMIPSSQRTF
    		return true
    	case OpStaticCall:
    		v.Op = OpMIPSCALLstatic
    		return true
    	case OpStore:
    		return rewriteValueMIPS_OpStore(v)
    	case OpSub16:
    		v.Op = OpMIPSSUB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		return true
    	case OpSignExt8to64:
    		v.Op = OpLOONG64MOVBreg
    		return true
    	case OpSlicemask:
    		return rewriteValueLOONG64_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpLOONG64SQRTD
    		return true
    	case OpSqrt32:
    		v.Op = OpLOONG64SQRTF
    		return true
    	case OpStaticCall:
    		v.Op = OpLOONG64CALLstatic
    		return true
    	case OpStore:
    		return rewriteValueLOONG64_OpStore(v)
    	case OpSub16:
    		v.Op = OpLOONG64SUBV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		return true
    	case OpSignExt8to64:
    		v.Op = OpMIPS64MOVBreg
    		return true
    	case OpSlicemask:
    		return rewriteValueMIPS64_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpMIPS64SQRTD
    		return true
    	case OpSqrt32:
    		v.Op = OpMIPS64SQRTF
    		return true
    	case OpStaticCall:
    		v.Op = OpMIPS64CALLstatic
    		return true
    	case OpStore:
    		return rewriteValueMIPS64_OpStore(v)
    	case OpSub16:
    		v.Op = OpMIPS64SUBV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	case OpSignExt8to64:
    		v.Op = OpRISCV64MOVBreg
    		return true
    	case OpSlicemask:
    		return rewriteValueRISCV64_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpRISCV64FSQRTD
    		return true
    	case OpSqrt32:
    		v.Op = OpRISCV64FSQRTS
    		return true
    	case OpStaticCall:
    		v.Op = OpRISCV64CALLstatic
    		return true
    	case OpStore:
    		return rewriteValueRISCV64_OpStore(v)
    	case OpSub16:
    		v.Op = OpRISCV64SUB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top