Skip to content

Commit 51fe5e1

Browse files
authored
[AutoDiff] NFC: fix incorrect JIRA issue reference. (#28437)
TF-984 tracks the forward-mode crash due to unset tangent buffer, not TF-985.
1 parent ad54102 commit 51fe5e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/AutoDiff/forward_mode_diagnostics.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ extension Mut {
109109
}
110110
}
111111

112-
// FIXME(TF-985): Forward-mode crash due to unset tangent buffer.
112+
// FIXME(TF-984): Forward-mode crash due to unset tangent buffer.
113113
/*
114114
@differentiable(wrt: x)
115115
func nonActiveInoutArg(_ nonactive: inout Mut, _ x: Mut) -> Mut {
116116
return nonactive.mutatingMethod(x)
117117
}
118118
*/
119119

120-
// FIXME(TF-985): Forward-mode crash due to unset tangent buffer.
120+
// FIXME(TF-984): Forward-mode crash due to unset tangent buffer.
121121
/*
122122
@differentiable(wrt: x)
123123
func activeInoutArgMutatingMethod(_ x: Mut) -> Mut {
@@ -127,7 +127,7 @@ func activeInoutArgMutatingMethod(_ x: Mut) -> Mut {
127127
}
128128
*/
129129

130-
// FIXME(TF-985): Forward-mode crash due to unset tangent buffer.
130+
// FIXME(TF-984): Forward-mode crash due to unset tangent buffer.
131131
/*
132132
@differentiable(wrt: x)
133133
func activeInoutArgMutatingMethodVar(_ nonactive: inout Mut, _ x: Mut) -> Mut {
@@ -137,7 +137,7 @@ func activeInoutArgMutatingMethodVar(_ nonactive: inout Mut, _ x: Mut) -> Mut {
137137
}
138138
*/
139139

140-
// FIXME(TF-985): Forward-mode crash due to unset tangent buffer.
140+
// FIXME(TF-984): Forward-mode crash due to unset tangent buffer.
141141
/*
142142
@differentiable(wrt: x)
143143
func activeInoutArgMutatingMethodTuple(_ nonactive: inout Mut, _ x: Mut) -> Mut {

0 commit comments

Comments
 (0)