-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: GOAMD64=local to compile for local machine #60338
Comments
Isn't this already somewhat the case?
|
@seankhliao this would happen at compile time allowing the compiler to omit the dynamic check, the thing you linked compiles to a runtime check: Note: this already exists, however you have to precisely tell the compiler which level you are targeting, what I am asking for is a level that is whatever best the current host supports. |
FWIW |
CC @golang/runtime |
When I first read this I reached the same conclusion as @seankhliao that this behavior is already the default, but I think both of us misunderstood what you were proposing. I think what's implied in your proposal is that you want "native" to mean "whatever architecture is available on the system where the compiler is running", because you assume that the computer where the program will eventually run will either be the same computer or will have an identical CPU. Is that right? I think others typically build one binary and ship it to many different servers to run, and so the runtime detection is what they want. It sounds like you are instead planning to build and run the executables on the same computer, and so you're intending to ask the compiler to assume that's true and look for opportunities to optimize based on what it can learn about the CPU that's running the compiler. |
@apparentlymart exact, I'll try adding "the compiler will ..." to the proposal hopping to make it clearer. Maybe if I just described the proposal as |
Just a note that if we do this for |
Given that GOAMD64 can really help in some cases like |
This proposal has been added to the active column of the proposals project |
GOAMD64=native
According to https://developers.google.com/style/inclusive-documentation#features-and-users we should avoid "socially-charged terms" including "native". I have retitled this to GOAMD64=local (as in the local machine), which matches other uses of local in the Go toolchain such as GOTOOLCHAIN=local and the "local package" concept in the compiler and is, at least to me, clearer anyway. (Perhaps GOAMD64=native would mean the original x86 instructions, analogous to "native species", something "native to x86". If you haven't heard of GCC's Now back to technical discussion... |
Another point in favour of this proposal is that it's not so easy to figure out which "level" your CPU supports; checking Wikipedia I see stuff like "CMPXCHG16B" for v2, but I don't see that in /proc/cpuinfo (looking it up, it's included in all 64bit CPUs, but that's not very obvious). My 2021 laptop CPU also doesn't include AVX (it's a cheap Celeron), so "circa 2015: Haswell and Excavator" isn't quite as simple either. Another way to solve this might be something like a One of the nice things about this is that you can easily see what's being selected. You can check this after the build with |
It would be nice if "go version -m" showed the real GOAMD64 not local. |
We should add the sub-arch values to the 'context' struct in go list, so that you can run |
Based on the discussion above, this proposal seems like a likely accept. |
@rsc does the likely accept also includes other architectures like |
@Jorropo, all the architectures. |
No change in consensus, so accepted. 🎉 |
Rational:
I am using
go install
to deploy code to a cluster since the go compiler compiles really fast and this save me from having to manage building and distributing binaries.It would be nice if I could also take advantage of the small performance gain of newer instructions sets available with
GOAMD64
,v2
and above however my cluster is made of heterogeneous machines and CPUs which not all support the latest features making it impossible or sub optimal to hardcode a level in my deploy script.Proposal:
Add
GOAMD64=local
level to the toolchain, the toolchain will at compile-time find what would be the highest compatible micro-architecture level of the compiling host's CPU and compile the binary as usual using the equivalent microarchitecture level.Thus running
GOAMD64=local go build .
(or other building command) on a compiling host that supports at mostGOAMD64=v2
will produce an identical result as runningGOAMD64=v2 go build .
, same for all architecture levels on CPU that would support at most thoses respectively.If a command of the toolchain that might be
GOAMD64
dependent for results is invoked withGOAMD64=local
while the toolchain is built withruntime.GOARCH != "amd64"
the invocation fails. (go install
,go build
... but not things likego env
orgo help
)I am not proposing that
GOAMD64=local
become defaults, just that it exists, by default the toolchain will continue to emitGOAMD64=v1
forGOARCH=amd64
binaries (even forgo install
as spuriously changing the micro architecture level invalidates different level build caches which would make ago build .
shortly followed bygo install .
much slower).The text was updated successfully, but these errors were encountered: