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.
cudnn FE 1.7.0 Release notes:
New API
Added examples
Convolution fprop dynamic shape
,CSBR Graph dynamic shape
,Matmul dynamic shape
andBias + Matmul dynamic shape
to showcase use of dynamic shapes and kernel cache.Note:
This name can be used later if you want to deselect_plan_by_name, if run into any potential errors.
query_tensor_with_uid(int64_t const uid, Tensor_attributes &tensor) const;
Improvements
sdpa fp16 bprop node can now compute dbias when padding mask is enabled (requires cudnn 9.4.0 and above).
sdpa fp8 (forward and bprop) nodes now support optional bias, dropout and padding mask(requires cudnn 9.4.0 and above).
Matmul fp8 node can now accept M,N,K overrides.
Added new python notebooks for implementing BatchNorm and BatchNorm bprop using cuDNN.
Updated benchmark numbers with cudnn 9.4.0 for fp16 and fp8 datatypes.
Fixed compilation issues when
NV_CUDNN_DISABLE_EXCEPTION
is enabled.Bug fixes
Fixed a crash when the output dimension of dgrad node is not specified. This now returns an error message instead.
Fixed incorrect SDPA stats stride inferencing.
Fixed a bug in sdpa test when sliding window attention is enabled and query sequence length (s_q) is greater than key length (s_kv). This case is now not supported.