@@ -803,7 +803,7 @@ extension SIMD where Scalar : FloatingPoint {
803
803
@_transparent
804
804
// SWIFT_ENABLE_TENSORFLOW
805
805
@differentiable ( vjp: _vjpSubtract ( lhs: rhs: )
806
- where Self: Differentiable,
806
+ where Self : Differentiable,
807
807
Self . TangentVector: SIMD,
808
808
Scalar : BinaryFloatingPoint,
809
809
Self . TangentVector. Scalar : BinaryFloatingPoint)
@@ -1197,9 +1197,10 @@ extension SIMD where Scalar: FixedWidthInteger {
1197
1197
extension SIMD where Scalar: FloatingPoint {
1198
1198
1199
1199
@_transparent
1200
+ // SWIFT_ENABLE_TENSORFLOW
1200
1201
@differentiable ( vjp: _vjpNegate ( rhs: )
1201
- where Self: Differentiable,
1202
- Self . TangentVector: SIMD,
1202
+ where Self : Differentiable,
1203
+ Self . TangentVector : SIMD,
1203
1204
Scalar : BinaryFloatingPoint,
1204
1205
Self . TangentVector. Scalar : BinaryFloatingPoint)
1205
1206
public static prefix func - ( rhs: Self ) -> Self {
@@ -1209,10 +1210,10 @@ extension SIMD where Scalar: FloatingPoint {
1209
1210
@_transparent
1210
1211
// SWIFT_ENABLE_TENSORFLOW
1211
1212
@differentiable ( vjp: _vjpAdd ( lhs: rhs: )
1212
- where Self: Differentiable,
1213
+ where Self : Differentiable,
1213
1214
Self . TangentVector: SIMD,
1214
1215
Scalar : Differentiable & BinaryFloatingPoint,
1215
- Scalar . TangentVector: BinaryFloatingPoint,
1216
+ Scalar . TangentVector : BinaryFloatingPoint,
1216
1217
Self . TangentVector. Scalar == Scalar . TangentVector)
1217
1218
public static func + ( lhs: Scalar , rhs: Self ) -> Self {
1218
1219
return Self ( repeating: lhs) + rhs
@@ -1221,10 +1222,10 @@ extension SIMD where Scalar: FloatingPoint {
1221
1222
@_transparent
1222
1223
// SWIFT_ENABLE_TENSORFLOW
1223
1224
@differentiable ( vjp: _vjpAdd ( lhs: rhs: )
1224
- where Self: Differentiable,
1225
- Self . TangentVector: SIMD,
1225
+ where Self : Differentiable,
1226
+ Self . TangentVector : SIMD,
1226
1227
Scalar : Differentiable & BinaryFloatingPoint,
1227
- Scalar . TangentVector: BinaryFloatingPoint,
1228
+ Scalar . TangentVector : BinaryFloatingPoint,
1228
1229
Self . TangentVector. Scalar == Scalar . TangentVector)
1229
1230
public static func - ( lhs: Scalar , rhs: Self ) -> Self {
1230
1231
return Self ( repeating: lhs) - rhs
@@ -1257,10 +1258,10 @@ extension SIMD where Scalar: FloatingPoint {
1257
1258
@_transparent
1258
1259
// SWIFT_ENABLE_TENSORFLOW
1259
1260
@differentiable ( vjp: _vjpAdd ( lhs: rhs: )
1260
- where Self: Differentiable,
1261
- Self . TangentVector: SIMD,
1261
+ where Self : Differentiable,
1262
+ Self . TangentVector : SIMD,
1262
1263
Scalar : Differentiable & BinaryFloatingPoint,
1263
- Scalar . TangentVector: BinaryFloatingPoint,
1264
+ Scalar . TangentVector : BinaryFloatingPoint,
1264
1265
Self . TangentVector. Scalar == Scalar . TangentVector)
1265
1266
public static func + ( lhs: Self , rhs: Scalar ) -> Self {
1266
1267
return lhs + Self( repeating: rhs)
@@ -1269,10 +1270,10 @@ extension SIMD where Scalar: FloatingPoint {
1269
1270
@_transparent
1270
1271
// SWIFT_ENABLE_TENSORFLOW
1271
1272
@differentiable ( vjp: _vjpAdd ( lhs: rhs: )
1272
- where Self: Differentiable,
1273
- Self . TangentVector: SIMD,
1273
+ where Self : Differentiable,
1274
+ Self . TangentVector : SIMD,
1274
1275
Scalar : Differentiable & BinaryFloatingPoint,
1275
- Scalar . TangentVector: BinaryFloatingPoint,
1276
+ Scalar . TangentVector : BinaryFloatingPoint,
1276
1277
Self . TangentVector. Scalar == Scalar . TangentVector)
1277
1278
public static func - ( lhs: Self , rhs: Scalar ) -> Self {
1278
1279
return lhs - Self( repeating: rhs)
@@ -1511,10 +1512,10 @@ where T: SIMD, T.Scalar: FloatingPoint {
1511
1512
1512
1513
// SWIFT_ENABLE_TENSORFLOW
1513
1514
extension SIMD
1514
- where Self: Differentiable ,
1515
- TangentVector: SIMD ,
1515
+ where Self : Differentiable ,
1516
+ TangentVector : SIMD ,
1516
1517
Scalar : BinaryFloatingPoint ,
1517
- TangentVector. Scalar: BinaryFloatingPoint {
1518
+ TangentVector. Scalar : BinaryFloatingPoint {
1518
1519
@inlinable
1519
1520
static func _vjpAdd(
1520
1521
lhs: Self , rhs: Self
@@ -1543,7 +1544,7 @@ extension SIMD
1543
1544
}
1544
1545
1545
1546
extension SIMD
1546
- where Self: Differentiable ,
1547
+ where Self : Differentiable ,
1547
1548
TangentVector: SIMD ,
1548
1549
Scalar : BinaryFloatingPoint ,
1549
1550
Self. TangentVector == Self {
0 commit comments