You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Enhancement] Add ability to filter by shape of tensors to errata filter.
[Enhancement] Adding ability to add feature vector to opGraph manually.
[Enhancement] Added support for CUDNN_POINTWISE_RECIPROCAL pointwise operation.
[Enhancement] Add anoption to limit the number of kernels benchmarked in find-plan.
[Bug Fix] Fixed "Scale Bias Conv BNGenstats" test case where the sum and square sum channel dimensions were incorrect.
[Bug Fix] Fixed a compiler error "dereferencing type-punned pointer will break strict-aliasing rules" seen in certain compiler while type-casting floating point alpha/beta to int64_t.
[Bug Fix] Waived "ConvScaleBiasAct_int8 sample" for V100 because of lack of int8 support.
[Samples] Updated the Fused MHA sample to use plan caching.
[Samples] Added BF16/FP16/FP8 Flash Attention Fprop/Bprop samples.
Co-authored-by: Anerudhan Gopal <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,9 @@ Errata filter gives the cuDNN team an opportunity to block certain faulty kernel
84
84
operation : "" - Mandatory. Stringified version of the operation graph.
85
85
engine : "" - Mandatory. Stringified version of the engine ID.
86
86
knob : "" - Optional. Stringified version of the knob. If specified only the engineConfig for the engine matching the knobs will be blocked. Else, all possible combination of knobs for the engine will be blocked.
87
+
input_shape : [] - Optional. Array of input shape for kernel (ex. [64, 32, 128, 128]) to be filtered out. Use -1 if you don't want to filter that dimension. (ex. [-1, -1, 128, 128] to only filter HxW for NCHW format)
88
+
filter_shape : [] - Optional. Array of kernel/filter shape for kernel (ex. [32, 32, 5, 5]) to be filtered out. Use -1 if you don't want to filter that dimension. (ex. [-1, -1, 5, 5] to only filter 5x5 filter sizes)
89
+
shape_format : "" - Mandatory if input_shape and/or kernel_shape is present. Optional otherwise. Shape format of tensors as a string. (Ex. "NCHW", "NHWC").
87
90
cudnn_version_start : 0 - Optional. Denotes the cudnn version after which the engine started having issues.
88
91
cudnn_version_end : -1 - Optional. Denotes the cudnn_version when the issue was fixed. "-1" denotes its an ongoing issue.
89
92
arch : "" - Optional. Architectures where this kernel might be faulty.
0 commit comments