Skip to content

Commit ce733dc

Browse files
authored
Merge pull request tensorflow#18881 from ManHyuk/fix_typo
fix typo
2 parents 5cd6a8d + 576dd95 commit ce733dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

third_party/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/BackwardSpatialConvolutions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,9 @@ SpatialConvolutionBackwardKernel(const Input& input, const OutputBackward& outpu
280280
eigen_assert(input_dims[0] == pre_contract_dims[0]);
281281
}
282282

283-
// We will contract along dimensions (1, 2) in in and (1, 3) in out, if
283+
// We will contract along dimensions (1, 2) in and (1, 3) in out, if
284284
// this is col-major.
285-
// For row-major, it's dimensions (0, 1) in in and (0, 2) in out.
285+
// For row-major, it's dimensions (0, 1) in and (0, 2) in out.
286286
array<IndexPair<TensorIndex>, 2> contract_dims;
287287
if (isColMajor) {
288288
// col-major: in.contract(output.patches)

0 commit comments

Comments
 (0)