Files
swift-mirror/test/AutoDiff/compiler_crashers_fixed/tf1232-autodiff-generated-declaration-mangling.swift
Dan Zheng 07f632acaa [AutoDiff] NFC: document test suite. (#35194)
Add README files explaining the differentiable programming test suite.

Add lit.local.cfg files so individual tests do not need to add
`REQUIRES: asserts` in these directories:

- test/AutoDiff/compiler_crashers
- test/AutoDiff/compiler_crashers_fixed

Motivation: it is important for compiler crasher tests to require assertions
enabled, because many of these tests crash on compiler assertions.
2020-12-23 07:19:19 -05:00

34 lines
997 B
Swift

// RUN: %target-build-swift -g %s
// TF-1232: IRGenDebugInfo crash due to lack of proper mangling for
// AutoDiff-generated declarations: linear map structs and branching trace
// enums.
import _Differentiation
extension Float {
@_silgen_name("add")
static func add(_ x: Float, _ y: Float) -> Float {
return x + y
}
@derivative(of: add)
static func addVJP(_ x: Float, _ y: Float) -> (
value: Float, pullback: (Float) -> (Float, Float)
) {
return (add(x, y), { v in (v, v) })
}
}
@differentiable
func foo(_ x: Float) -> Float {
let y = Float.add(x, x)
return y
}
// Failed to reconstruct type for $s4main42_AD__$s4main3fooyS2fF_bb0__PB__src_0_wrt_0VmD
// Original type:
// (metatype_type
// (struct_type decl=main.(file)._AD__$s4main3fooyS2fF_bb0__PB__src_0_wrt_0))
// Assertion failed: (isa<X>(Val) && "cast<Ty>() argument of incompatible type!"), function cast, file /Users/danielzheng/swift-merge/llvm-project/llvm/include/llvm/Support/Casting.h, line 264.