Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit d48690d

Browse files
authoredJul 3, 2020
Fix ParameterlessLayer conformances. (#620)
Associated type inference behavior was changed in swiftlang/swift#32578: derived conformances are now attempted before associated type inference. This broke `ParameterlessLayer`, which relied on a `TangentVector == EmptyTangentVector` same-type constraint to set a default `TangentVector` type witness for conforming types. Add explicit `TangentVector` type witnesses to `ParameterlessLayer`-conforming types to fix this regression. This workaround is forward- and backward-compatible, but makes code more verbose.
1 parent 23e0a76 commit d48690d

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed
 

‎FastStyleTransfer/Layers/Helpers.swift

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import TensorFlow
22

33
/// A 2-D layer applying padding with reflection over a mini-batch.
44
public struct ReflectionPad2D<Scalar: TensorFlowFloatingPoint>: ParameterlessLayer {
5+
public typealias TangentVector = EmptyTangentVector
6+
57
/// The padding values along the spatial dimensions.
68
@noDerivative public let padding: ((Int, Int), (Int, Int))
79

@@ -39,6 +41,8 @@ public struct ReflectionPad2D<Scalar: TensorFlowFloatingPoint>: ParameterlessLay
3941

4042
/// A layer applying `relu` activation function.
4143
public struct ReLU<Scalar: TensorFlowFloatingPoint>: ParameterlessLayer {
44+
public typealias TangentVector = EmptyTangentVector
45+
4246
/// Returns the output obtained from applying the layer to the given input.
4347
///
4448
/// - Parameter input: The input to the layer.

‎Models/ImageClassification/ShuffleNetV2.swift

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import TensorFlow
1919
// Ningning Ma, Xiangyu Zhang, Hai-Tao Zheng, Jian Sun
2020

2121
public struct ChannelShuffle: ParameterlessLayer {
22+
public typealias TangentVector = EmptyTangentVector
23+
2224
@noDerivative public var groups: Int
2325

2426
public init(groups: Int = 2) {

‎Models/Text/GPT2/TransformerLM.swift

+2
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ func _vjpCausallyMasked(_ dotProducts: Tensor<Float>, enable: Bool)
130130
}
131131

132132
struct Attention: ParameterlessLayer {
133+
typealias TangentVector = EmptyTangentVector
134+
133135
@noDerivative var dropout: Dropout<Float>
134136
@noDerivative var scale: Tensor<Float>
135137
@noDerivative var causal: Bool

‎pix2pix/Layers.swift

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ import TensorFlow
1515
import Foundation
1616

1717
public struct Identity: ParameterlessLayer {
18+
public typealias TangentVector = EmptyTangentVector
19+
1820
@differentiable
1921
public func callAsFunction(_ input: Tensor<Float>) -> Tensor<Float> {
2022
input

0 commit comments

Comments
 (0)
This repository has been archived.