|
3 | 3 |
|
4 | 4 | // Test crashes related to differentiation and definite initialization.
|
5 | 5 |
|
6 |
| -// SR-12886: SIL memory lifetime verification error due to |
7 |
| -// `SILCloner::visitAllocStack` not copying the `[dynamic_lifetime]` attribute. |
| 6 | +// https://github.com/apple/swift/issues/55333 |
| 7 | +// SIL memory lifetime verification error due to `SILCloner::visitAllocStack` |
| 8 | +// not copying the `[dynamic_lifetime]` attribute |
8 | 9 |
|
9 |
| -// SR-12887: Debug scope error for pullback struct `struct` instruction |
10 |
| -// generated by `VJPEmitter`. |
| 10 | +// https://github.com/apple/swift/issues/55334 |
| 11 | +// Debug scope error for pullback struct `struct` instruction generated |
| 12 | +// by `VJPEmitter` |
11 | 13 |
|
12 |
| -// FIXME(SR-13021): Disabled due to flakiness on Linux, likely related to TF-1197. |
| 14 | +// FIXME: Disabled due to flakiness on Linux (https://github.com/apple/swift/issues/55466), likely related to TF-1197. |
13 | 15 | // REQUIRES: SR13021
|
14 | 16 |
|
15 | 17 | import _Differentiation
|
@@ -44,11 +46,11 @@ struct Tensor<T>: Differentiable {
|
44 | 46 | // CHECK-LABEL: sil hidden @AD__$s4main6TensorVyACyxGx_ADtcfC__vjp_src_0_wrt_1_l : $@convention(method) <τ_0_0> (@in τ_0_0, @in Tensor<τ_0_0>, @thin Tensor<τ_0_0>.Type) -> (@out Tensor<τ_0_0>, @owned @callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Tensor<τ_0_0>.TangentVector, Tensor<τ_0_0>.TangentVector>) {
|
45 | 47 | // CHECK: [[SELF_ALLOC:%.*]] = alloc_stack [dynamic_lifetime] $Tensor<τ_0_0>, var, name "self"
|
46 | 48 |
|
47 |
| -// SR-12886 original error: |
| 49 | +// Original error in https://github.com/apple/swift/issues/55333: |
48 | 50 | // SIL memory lifetime failure in @AD__$s5crash6TensorVyACyxGx_ADtcfC__vjp_src_0_wrt_1_l: memory is not initialized, but should
|
49 | 51 | // memory location: %29 = struct_element_addr %5 : $*Tensor<τ_0_0>, #Tensor.x // user: %30
|
50 | 52 | // at instruction: destroy_addr %29 : $*τ_0_0 // id: %30
|
51 | 53 |
|
52 |
| -// SR-12887 original error: |
| 54 | +// Original error in https://github.com/apple/swift/issues/55334: |
53 | 55 | // SIL verification failed: Basic block contains a non-contiguous lexical scope at -Onone: DS == LastSeenScope
|
54 | 56 | // %26 = struct $_AD__$s5crash6TensorVyACyxGx_ADtcfC_bb0__PB__src_0_wrt_1_l<τ_0_0> () // users: %34, %28
|
0 commit comments