Skip to content
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

Fix cong implementation to be properly random and not just cycling. #55509

Merged
merged 4 commits into from
Aug 26, 2024

Conversation

gbaraldi
Copy link
Member

This was found by @IanButterworth. It unfortunately has a small performance regression due to actually using all the rng bits

Comment on lines +1314 to 1315
if (max < 2)
return 0;
Copy link
Sponsor Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems biased against returning 1

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The old rng is also broken here, which is fun. But basically the issue is that it's a [0, n) interval. So to get 0 and 1 you pass in 2.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Though I'll see if anyone that's using this is actually checking that.

@gbaraldi
Copy link
Member Author

@d-netto could you check the change I made to the GC code there. It looked to me that it was assuming that cong return 0 to max in a closed interval and that's not exactly correct.

@d-netto
Copy link
Member

d-netto commented Aug 16, 2024

What matters here is that we want to generate a random number in 0, 1, ... markthreads - 1.

It seems like the previous code was generating random numbers in [0, max], so that's why we have the markthreads - 1 in there.

If the new implementation is generating random numbers in [0, max) then your change is fine.

@gbaraldi
Copy link
Member Author

The old code was also open :)

@d-netto
Copy link
Member

d-netto commented Aug 16, 2024

What about the:

do {...} while (x > max)?

@d-netto
Copy link
Member

d-netto commented Aug 16, 2024

Ah OK, there is a --max in there.

@gbaraldi
Copy link
Member Author

The first line in the old implementation does max--. I think when I ported it from blogpost it came from it was there and wrong.

@gbaraldi gbaraldi added the status:merge me PR is reviewed. Merge when all tests are passing label Aug 26, 2024
@oscardssmith oscardssmith merged commit 733b3f5 into master Aug 26, 2024
8 checks passed
@oscardssmith oscardssmith deleted the gb/correct-cong branch August 26, 2024 22:27
@oscardssmith oscardssmith added domain:multithreading Base.Threads and related functionality kind:bugfix This change fixes an existing bug and removed status:merge me PR is reviewed. Merge when all tests are passing labels Aug 26, 2024
@IanButterworth
Copy link
Sponsor Member

I believe we should backport this as the consequences of the scheduler being non-random seems worse than the scheduler being a little slower?

@IanButterworth IanButterworth added backport 1.10 Change should be backported to the 1.10 release backport 1.11 Change should be backported to release-1.11 labels Aug 30, 2024
@oscardssmith
Copy link
Member

Do we have actual examples where the non-randomness causes things to break?

@IanButterworth
Copy link
Sponsor Member

Something along these lines? Maybe there's more to attribute the difference to though

% julia +1.10.5 -t6 
julia> foo() = @sync for _ in 1:Threads.nthreads()
           Threads.@spawn for _ in 1:100000
               yield()
           end
       end
foo (generic function with 1 method)

julia> using Chairmarks

julia> @b foo()
466.335 ms (33 allocs: 3.234 KiB, without a warmup)
% julia +nightly -t6 
julia> versioninfo()
Julia Version 1.12.0-DEV.1122
Commit 1e217279439 (2024-08-30 13:37 UTC)
...

julia> @b foo()
408.224 ms (33 allocs: 2.016 KiB, without a warmup)

@KristofferC KristofferC mentioned this pull request Sep 11, 2024
33 tasks
KristofferC pushed a commit that referenced this pull request Sep 12, 2024
…55509)

This was found by @IanButterworth. It unfortunately has a small
performance regression due to actually using all the rng bits
@KristofferC KristofferC mentioned this pull request Sep 12, 2024
45 tasks
KristofferC added a commit that referenced this pull request Sep 17, 2024
Backported PRs:
- [x] #55480 <!-- Fix push! for OffsetVectors, add tests for push! and
append! on AbstractVector -->
- [x] #55443 <!-- Add test for upper/lower/titlecase and fix call -->
- [x] #55524 <!-- Set `.jl` sources as read-only during installation -->
- [x] #55500 <!-- make jl_thread_suspend_and_get_state safe -->
- [x] #55506 <!-- Fix indexing in _mapreducedim for OffsetArrays -->
- [x] #55564 <!-- Empty out loaded_precompiles dict instead of asserting
it's empty. -->
- [x] #55567 <!-- Initialize threadpools correctly during sysimg build
-->
- [x] #55596 <!-- Fast bounds-check for CartesianIndex ranges -->
- [x] #55605 <!-- Reroute Symmetric/Hermitian + Diagonal through
triangular -->
- [x] #55640 <!-- win: move stack_overflow_warning to the backtrace
fiber -->
- [x] #55715 <!-- Add precompile signatures to Markdown to reduce
latency. -->
- [x] #55593 <!-- Fix invalidations for FileIO -->
- [x] #55555 <!-- Revert "Don't expose guard pages to malloc_stack API
consumers" -->
- [x] #55720 <!-- Fix `pkgdir` for extensions -->
- [x] #55729 <!-- Avoid confounding compilation side effects of
`@time_imports` -->
- [x] #55718 <!-- Fix `@time_imports` extension recognition -->
- [x] #55522 <!-- Fix tr for Symmetric/Hermitian block matrices -->

Contains multiple commits, manual intervention needed:
- [ ] #55509 <!-- Fix cong implementation to be properly random and not
just cycling. -->

Non-merged PRs with backport label:
- [ ] #55641 <!-- fall back to slower stat filesize if optimized
filesize fails -->
- [ ] #55534 <!-- Set stdlib sources as read-only during installation
-->
- [ ] #55499 <!-- propagate the terminal's `displaysize` to the
`IOContext` used by the REPL -->
- [ ] #55458 <!-- Allow for generically extracting unannotated string
-->
- [ ] #55457 <!-- Make AnnotateChar equality consider annotations -->
- [ ] #55453 <!-- Privatise the annotations API, for StyledStrings -->
- [ ] #55355 <!-- relocation: account for trailing path separator in
depot paths -->
- [ ] #55220 <!-- `isfile_casesensitive` fixes on Windows -->
- [ ] #55169 <!-- `propertynames` for SVD respects private argument -->
- [ ] #54457 <!-- Make `String(::Memory)` copy -->
- [ ] #53957 <!-- tweak how filtering is done for what packages should
be precompiled -->
- [ ] #51479 <!-- prevent code loading from lookin in the versioned
environment when building Julia -->
- [ ] #50813 <!-- More doctests for Sockets and capitalization fix -->
- [ ] #50157 <!-- improve docs for `@inbounds` and
`Base.@propagate_inbounds` -->
- [ ] #41244 <!-- Fix shell `cd` error when working dir has been deleted
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport 1.10 Change should be backported to the 1.10 release backport 1.11 Change should be backported to release-1.11 domain:multithreading Base.Threads and related functionality kind:bugfix This change fixes an existing bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants