Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MULT (0.08 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MULL", argLength: 2, reg: gp21, asm: "SMULL", commutative: true},                                      // arg0 * arg1, signed, 32-bit mult results in 64-bit
    		{name: "UMULL", argLength: 2, reg: gp21, asm: "UMULL", commutative: true},                                     // arg0 * arg1, unsigned, 32-bit mult results in 64-bit
    		{name: "DIV", argLength: 2, reg: gp21, asm: "SDIV"},                                                           // arg0 / arg1, signed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	if rsa.amount == 0 && rsa.extShift == lsl {
    		rsa.extShift = ExtShift(0)
    	} else if rsa.amount > max {
    		return nil
    	}
    	return rsa
    }
    
    func handle_MemExtend(x uint32, mult uint8, absent bool) Arg {
    	var extend ExtShift
    	var Rm Reg
    	option := (x >> 13) & (1<<3 - 1)
    	Rn := RegSP(X0) + RegSP(x>>5&(1<<5-1))
    	if (option & 1) != 0 {
    		Rm = Reg(X0) + Reg(x>>16&(1<<5-1))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        assert lhs_ty, rhs_ty
        if isinstance(op, ast.Sub):
          code = 'arith.sub'
        elif isinstance(op, ast.Add):
          code = 'arith.add'
        elif isinstance(op, ast.Mult):
          code = 'arith.mul'
        elif isinstance(op, ast.Div):
          code = 'arith.div'
        else:
          raise NotImplementedError('BinOp operator not recognized' + op)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top