Add XoshiroSplit type to copy added task RNG state#51271
Closed
nhz2 wants to merge 2 commits intoJuliaLang:masterfrom
Closed
Add XoshiroSplit type to copy added task RNG state#51271nhz2 wants to merge 2 commits intoJuliaLang:masterfrom
nhz2 wants to merge 2 commits intoJuliaLang:masterfrom
Conversation
vtjnash
reviewed
Sep 13, 2023
Member
vtjnash
left a comment
There was a problem hiding this comment.
I think we might as well make this the default behavior for Xoshiro itself, rather than duplicating everything to have an identical XoshiroSplit type. They will be the same size anyways when allocated (6 words), due to alignment.
Member
Author
|
I created #51332 to replace this PR |
vtjnash
pushed a commit
that referenced
this pull request
Sep 15, 2023
This PR adds an optional field to the existing `Xoshiro` struct to be able to faithfully copy the task-local RNG state. Fixes #51255 Redo of #51271 Background context: #49110 added an additional state to the task-local RNG. However, before this PR `copy(default_rng())` did not include this extra state, causing subtle errors in `Test` where `copy(default_rng())` is assumed to contain the full task-local RNG state.
NHDaly
pushed a commit
that referenced
this pull request
Sep 20, 2023
This PR adds an optional field to the existing `Xoshiro` struct to be able to faithfully copy the task-local RNG state. Fixes #51255 Redo of #51271 Background context: #49110 added an additional state to the task-local RNG. However, before this PR `copy(default_rng())` did not include this extra state, causing subtle errors in `Test` where `copy(default_rng())` is assumed to contain the full task-local RNG state.
KristofferC
pushed a commit
that referenced
this pull request
Oct 3, 2023
This PR adds an optional field to the existing `Xoshiro` struct to be able to faithfully copy the task-local RNG state. Fixes #51255 Redo of #51271 Background context: #49110 added an additional state to the task-local RNG. However, before this PR `copy(default_rng())` did not include this extra state, causing subtle errors in `Test` where `copy(default_rng())` is assumed to contain the full task-local RNG state. (cherry picked from commit 41b41ab)
nalimilan
pushed a commit
that referenced
this pull request
Nov 5, 2023
This PR adds an optional field to the existing `Xoshiro` struct to be able to faithfully copy the task-local RNG state. Fixes #51255 Redo of #51271 Background context: #49110 added an additional state to the task-local RNG. However, before this PR `copy(default_rng())` did not include this extra state, causing subtle errors in `Test` where `copy(default_rng())` is assumed to contain the full task-local RNG state. (cherry picked from commit 41b41ab)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #51255 by defining
mutable struct XoshiroSplit <: AbstractRNGthat is returned bycopy(default_rng())#49110 added an additional state to the task-local RNG. However, before this PR
copy(default_rng())did not include this extra state, causing subtle errors inTestwherecopy(default_rng())is assumed to contain the full task-local RNG state.