Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for largeConstant (0.23 sec)

  1. src/runtime/runtime-gdb_test.go

    		if !strings.Contains(sgot, name) {
    			t.Fatalf("could not find %s in 'info typrs astruct' output", name)
    		}
    	}
    }
    
    const constsSource = `
    package main
    
    const aConstant int = 42
    const largeConstant uint64 = ^uint64(0)
    const minusOne int64 = -1
    
    func main() {
    	println("hello world")
    }
    `
    
    func TestGdbConst(t *testing.T) {
    	checkGdbEnvironment(t)
    	t.Parallel()
    	checkGdbVersion(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. RELEASE.md

        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
        use more than 4GB of temp memory. This results in garbage results and/or
    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