Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sasl (0.07 sec)

  1. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (SARL x (MOVQconst [c]))
    	// result: (SARLconst [int8(c&31)] x)
    	for {
    		x := v_0
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpAMD64SARLconst)
    		v.AuxInt = int8ToAuxInt(int8(c & 31))
    		v.AddArg(x)
    		return true
    	}
    	// match: (SARL x (MOVLconst [c]))
    	// result: (SARLconst [int8(c&31)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  2. RELEASE.md

        `CUDA_ILLEGAL_ADDRESS` failures.
    
        Google discovered in mid-December 2017 that the PTX-to-SASS compiler in CUDA
        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
    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