mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
[functorch] Added dropout (tested by opinfo to be upstreamed)
This commit is contained in:
@ -209,5 +209,6 @@ TORCH_LIBRARY_IMPL(aten, FT_BATCHED_KEY, m) {
|
||||
m.impl("mkldnn_convolution", mkldnn_convolution_decomp);
|
||||
m.impl("cudnn_convolution_backward", cudnn_convolution_backward_plumbing);
|
||||
m.impl("cudnn_convolution", cudnn_convolution_plumbing);
|
||||
OP_DECOMPOSE(dropout);
|
||||
}
|
||||
}}
|
@ -210,6 +210,7 @@ _functorch_lagging_meta = {
|
||||
('narrow', ''),
|
||||
('ne', ''),
|
||||
('neg', ''),
|
||||
('nn.functional.dropout', ''),
|
||||
('nn.functional.gelu', ''),
|
||||
('nn.functional.hardshrink', ''),
|
||||
('nn.functional.hardswish', ''),
|
||||
|
Reference in New Issue
Block a user