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

Add ability to do deterministic convolutions for cudnn #120

Open
coreylowman opened this issue Apr 5, 2023 · 0 comments
Open

Add ability to do deterministic convolutions for cudnn #120

coreylowman opened this issue Apr 5, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@coreylowman
Copy link
Owner

coreylowman commented Apr 5, 2023

This would involve filtering the results in the three pick_algorithm methods for only ones that are marked as deterministic.

Since I don't want this to be a breaking change, let's add a 2nd method alongside pick_algorithm that looks like:

pub fn pick_algorithm(&self) -> ... {
    self.pick_algorithm_ex(false)
}

pub fn pick_algorithm_ex(&self, force_deterministic: bool) -> ... {
    // existing pick_algorithm code, but with the filtering based on force_deterministic passed in
     ....
}
@coreylowman coreylowman added the enhancement New feature or request label Apr 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant