Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for umul (0.06 sec)

  1. src/cmd/vendor/golang.org/x/text/language/parse.go

    // in Accept-Language (with reasonable frequency).
    var acceptFallback = map[string]language.Language{
    	"english": _en,
    	"deutsch": _de,
    	"italian": _it,
    	"french":  _fr,
    	"*":       _mul, // defined in the spec to match all languages.
    }
    
    type tagSort struct {
    	tag []Tag
    	q   []float32
    }
    
    func (s *tagSort) Len() int {
    	return len(s.q)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

            entities.put("Oslash", "\u00d8");
            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
            entities.put("szlig", "\u00df");
            entities.put("agrave", "\u00e0");
            entities.put("aacute", "\u00e1");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Sub(32|64)F ...) => (SUBS(S|D) ...)
    
    (Mul(64|32|16|8) ...) => (MUL(Q|L|L|L) ...)
    (Mul(32|64)F ...) => (MULS(S|D) ...)
    
    (Select0 (Mul64uover x y)) => (Select0 <typ.UInt64> (MULQU x y))
    (Select0 (Mul32uover x y)) => (Select0 <typ.UInt32> (MULLU x y))
    (Select1 (Mul(64|32)uover x y)) => (SETO (Select1 <types.TypeFlags> (MUL(Q|L)U x y)))
    
    (Hmul(64|32) ...) => (HMUL(Q|L) ...)
    (Hmul(64|32)u ...) => (HMUL(Q|L)U ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/walk.go

    			// to be more precise here.
    			return len(n.Y.Init()) != 0
    
    		// When using soft-float, these ops might be rewritten to function calls
    		// so we ensure they are evaluated first.
    		case ir.OADD, ir.OSUB, ir.OMUL, ir.ONEG:
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.Type())
    		case ir.OLT, ir.OEQ, ir.ONE, ir.OLE, ir.OGE, ir.OGT:
    			n := n.(*ir.BinaryExpr)
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.X.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/cpu.go

    	AADDIW
    	ASLLIW
    	ASRLIW
    	ASRAIW
    	AADDW
    	ASLLW
    	ASRLW
    	ASUBW
    	ASRAW
    
    	// 5.3: Load and Store Instructions (RV64I)
    	ALD
    	ASD
    
    	// 7.1: Multiplication Operations
    	AMUL
    	AMULH
    	AMULHU
    	AMULHSU
    	AMULW
    	ADIV
    	ADIVU
    	AREM
    	AREMU
    	ADIVW
    	ADIVUW
    	AREMW
    	AREMUW
    
    	// 8.2: Load-Reserved/Store-Conditional Instructions
    	ALRD
    	ASCD
    	ALRW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/config.go

    	useSSE         bool        // Use SSE for non-float operations
    	useAvg         bool        // Use optimizations that need Avg* operations
    	useHmul        bool        // Use optimizations that need Hmul* operations
    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    	BigEndian      bool        //
    	UseFMA         bool        // Use hardware FMA operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/asm0.go

    	{AMOVV, C_REG, C_NONE, C_HI, 21, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_REG, C_NONE, C_LO, 21, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_LO, 21, 4, 0, sys.MIPS64, 0},
    
    	{AMUL, C_REG, C_REG, C_NONE, 22, 4, 0, 0, 0},
    	{AMUL, C_REG, C_REG, C_REG, 22, 4, 0, 0, 0},
    	{AMULV, C_REG, C_REG, C_NONE, 22, 4, 0, sys.MIPS64, 0},
    
    	{AADD, C_ADD0CON, C_REG, C_REG, 4, 4, 0, 0, 0},
    	{AADD, C_ADD0CON, C_NONE, C_REG, 4, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: %[[sub:.*]] = mhlo.subtract %[[act]], %[[bcast_arg3]] : tensor<8x8x8x8xf32>
        // CHECK: %[[mul:.*]] = mhlo.multiply %[[grad]], %[[sub]] : tensor<8x8x8x8xf32>
        // CHECK: mhlo.constant dense<[0, 1, 2]> : tensor<3xi64>
        // CHECK-NEXT: %[[cmul:.*]] = mhlo.convert %[[mul]] : tensor<8x8x8x8xf32>
        // CHECK-NEXT: %[[init:.*]] = mhlo.constant dense<0.000000e+00> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/tables.go

    const CLDRVersion = "32"
    
    const (
    	_de  = 269
    	_en  = 313
    	_fr  = 350
    	_it  = 505
    	_mo  = 784
    	_no  = 879
    	_nb  = 839
    	_pt  = 960
    	_sh  = 1031
    	_mul = 806
    	_und = 0
    )
    const (
    	_001 = 1
    	_419 = 31
    	_BR  = 65
    	_CA  = 73
    	_ES  = 111
    	_GB  = 124
    	_MD  = 189
    	_PT  = 239
    	_UK  = 307
    	_US  = 310
    	_ZZ  = 358
    	_XA  = 324
    	_XC  = 326
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    			return n
    		}
    		switch n.AsOp {
    		case ir.OLSH, ir.ORSH:
    			n.X, n.Y, _ = tcShift(n, n.X, n.Y)
    		case ir.OADD, ir.OAND, ir.OANDNOT, ir.ODIV, ir.OMOD, ir.OMUL, ir.OOR, ir.OSUB, ir.OXOR:
    			n.X, n.Y, _ = tcArith(n, n.AsOp, n.X, n.Y)
    		default:
    			base.Fatalf("invalid assign op: %v", n.AsOp)
    		}
    		return n
    
    	// logical operators
    	case ir.OANDAND, ir.OOROR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top