-
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: respect -cpu=n on workers #46629
Comments
/cc @jayconrod |
Each worker is essentially single threaded, but I guess if the code being fuzzed is doing parallelized work it could lead to resource contention. Based on my experience I've only seen a drop in performance when I set We could default each worker process to use |
@rolandshoemaker It currently uses the default, which I argue also doesn't make much sense, or at least should be controllable by the existing |
Why not? |
@rolandshoemaker I misread your In my view While I understand your intent, we already have a parameter that controls concurrency, so when I use |
A documentation update to the I can see how it makes sense to use |
For now, we are going to disable |
Change https://golang.org/cl/350154 mentions this issue: |
Change https://golang.org/cl/351113 mentions this issue: |
Now that the documentation updates are in, I removed the release-blocker label and we can use this issue as discussion for future changes that may be made to support |
This CL removes 'go help fuzz' but expands the testing package documentation with much of the same information. It also removes documentation for the unimplemented -keepfuzzing flag and makes a number of other clarifications. Addressing comments in CL 348469. Updates #46629 Change-Id: I12ab5971c900c2e43f2c2d83c6705e8cd642388b Reviewed-on: https://go-review.googlesource.com/c/go/+/351113 Run-TryBot: Jay Conrod <jayconrod@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Katie Hockman <katie@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> Trust: Katie Hockman <katie@golang.org> Trust: Bryan C. Mills <bcmills@google.com>
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Tip branch build. Fuzzing not in latest release.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Run fuzz test which has a concurrent component, or pretty much any fuzz test.
with
λ gotip test -fuzz=. -test.run=None -parallel=16 -cpu=2
.What did you expect to see?
I would expect each worker to have
runtime.GOMAXPROCS(2)
similar to how tests and benchmarks behave.Arguments could be made for workers defaulting to
runtime.GOMAXPROCS(1)
, but I would at least like the option to change it easily.What did you see instead?
Each worker has default
GOMAXPROCS
, leading to significant CPU overprovisioning and workers fighting for CPU threads.The text was updated successfully, but these errors were encountered: