@@ -67,6 +67,8 @@ def legacy_get_enum(size_average, reduce, emit_warning=True):
67
67
68
68
See :class:`~torch.nn.Conv1d` for details and output shape.
69
69
70
+ .. include:: cudnn_deterministic.rst
71
+
70
72
Args:
71
73
input: input tensor of shape :math:`(\text{minibatch} \times \text{in\_channels} \times iW)`
72
74
weight: filters of shape :math:`(\text{out\_channels} \times \frac{\text{in\_channels}}{\text{groups}} \times kW)`
@@ -95,6 +97,8 @@ def legacy_get_enum(size_average, reduce, emit_warning=True):
95
97
96
98
See :class:`~torch.nn.Conv2d` for details and output shape.
97
99
100
+ .. include:: cudnn_deterministic.rst
101
+
98
102
Args:
99
103
input: input tensor of shape :math:`(\text{minibatch} \times \text{in\_channels} \times iH \times iW)`
100
104
weight: filters of shape :math:`(\text{out\_channels} \times \frac{\text{in\_channels}}{\text{groups}} \times kH \times kW)`
@@ -124,6 +128,8 @@ def legacy_get_enum(size_average, reduce, emit_warning=True):
124
128
125
129
See :class:`~torch.nn.Conv3d` for details and output shape.
126
130
131
+ .. include:: cudnn_deterministic.rst
132
+
127
133
Args:
128
134
input: input tensor of shape :math:`(\text{minibatch} \times \text{in\_channels} \times iT \times iH \times iW)`
129
135
weight: filters of shape :math:`(\text{out\_channels} \times \frac{\text{in\_channels}}{\text{groups}} \times kT \times kH \times kW)`
@@ -152,6 +158,8 @@ def legacy_get_enum(size_average, reduce, emit_warning=True):
152
158
153
159
See :class:`~torch.nn.ConvTranspose1d` for details and output shape.
154
160
161
+ .. include:: cudnn_deterministic.rst
162
+
155
163
Args:
156
164
input: input tensor of shape :math:`(\text{minibatch} \times \text{in\_channels} \times iW)`
157
165
weight: filters of shape :math:`(\text{in\_channels} \times \frac{\text{out\_channels}}{\text{groups}} \times kW)`
@@ -183,6 +191,8 @@ def legacy_get_enum(size_average, reduce, emit_warning=True):
183
191
184
192
See :class:`~torch.nn.ConvTranspose2d` for details and output shape.
185
193
194
+ .. include:: cudnn_deterministic.rst
195
+
186
196
Args:
187
197
input: input tensor of shape :math:`(\text{minibatch} \times \text{in\_channels} \times iH \times iW)`
188
198
weight: filters of shape :math:`(\text{in\_channels} \times \frac{\text{out\_channels}}{\text{groups}} \times kH \times kW)`
@@ -216,6 +226,8 @@ def legacy_get_enum(size_average, reduce, emit_warning=True):
216
226
217
227
See :class:`~torch.nn.ConvTranspose3d` for details and output shape.
218
228
229
+ .. include:: cudnn_deterministic.rst
230
+
219
231
Args:
220
232
input: input tensor of shape :math:`(\text{minibatch} \times \text{in\_channels} \times iT \times iH \times iW)`
221
233
weight: filters of shape :math:`(\text{in\_channels} \times \frac{\text{out\_channels}}{\text{groups}} \times kT \times kH \times kW)`
@@ -1438,6 +1450,8 @@ def ctc_loss(log_probs, targets, input_lengths, target_lengths, blank=0,
1438
1450
1439
1451
See :class:`~torch.nn.CTCLoss` for details.
1440
1452
1453
+ .. include:: cudnn_deterministic.rst
1454
+
1441
1455
Args:
1442
1456
log_probs: :math:`(T, N, C)` where `C = number of characters in alphabet including blank`,
1443
1457
`T = input length`, and `N = batch size`.
0 commit comments