forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cuDNN] [cuDNN v8 API] Support cuDNN Errata Filter (pytorch#73934)
Not originally mentioned in the tracking issue pytorch#58414, but is a nice-to-have feature. In summary, the errata filter allows known problematic kernels to be skipped instead of irrecoverably crashing a CUDA context (e.g., via an illegal memory access) via a JSON file supplied at run time. cuDNN frontend description: https://github.com/NVIDIA/cudnn-frontend#errata-filter Sample errata filter JSON: ``` { "version" : 1, "rules" : [ { "rule_id" : "avoid_bad_bwd_data", "operation" : "ConvBwdData", "engine" : 12, "cudnn_version_start" : 8000, "cudnn_version_end" : 9000 } ] } ``` CC @ngimel @zasdfgbnm @ptrblck Pull Request resolved: pytorch#73934 Approved by: https://github.com/ngimel
- Loading branch information
1 parent
c29df68
commit fc66521
Showing
1 changed file
with
32 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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