mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Previously, two conditions were necessary to enable differentiable programming: - Using the `-enable-experimental-differentiable-programming` frontend flag. - Importing the `_Differentiation` module. Importing the `_Differentiation` module is the true condition because it contains the required compiler-known `Differentiable` protocol. The frontend flag is redundant and cumbersome. Now, the frontend flag is removed. Importing `_Differentiation` is the only condition.
25 lines
937 B
Swift
25 lines
937 B
Swift
// RUN: %target-swift-frontend -typecheck -verify %s
|
|
// REQUIRES: asserts
|
|
|
|
// TF-1167: `OverrideMatcher::match` crash due to meaningless assertion:
|
|
// `assert(false)`. The assertion was triggered when parameter indices
|
|
// could not be resolved for neither base nor derived declaration
|
|
// `@differentiable` attributes.
|
|
//
|
|
// `import _Differentiation` is intentionally omitted from this test case.
|
|
|
|
public protocol Base {
|
|
associatedtype Input
|
|
// expected-error @+1 {{use of undeclared type 'Differentiable'}}
|
|
associatedtype Output: Differentiable
|
|
|
|
// expected-error @+1 {{@differentiable attribute used without importing module '_Differentiation'}}
|
|
@differentiable(wrt: self)
|
|
func callAsFunction(_ input: Input) -> Output
|
|
}
|
|
public protocol Derived: Base {
|
|
// expected-error @+1 {{@differentiable attribute used without importing module '_Differentiation'}}
|
|
@differentiable
|
|
func callAsFunction(_ input: Input) -> Output
|
|
}
|