Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 1d484e1

Browse files
eaplataniosrxwei
authored andcommitted
[TF] TensorFlow/TensorFlowCore Refactoring (#109)
Moves all of `stdlib/TensorFlow` from apple/swift. Friend PR: swiftlang/swift#24452.
1 parent 28e12ae commit 1d484e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+46243
-361
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ xcuserdata
55
DerivedData/
66
*.xcodeproj
77
*~
8+
9+
### MacOS ###
10+
.DS_Store

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
import PackageDescription
1919

2020
let package = Package(
21-
name: "DeepLearning",
21+
name: "TensorFlow",
2222
products: [
2323
.library(
24-
name: "DeepLearning",
25-
targets: ["DeepLearning"]),
24+
name: "TensorFlow",
25+
targets: ["TensorFlow"]),
2626
],
2727
dependencies: [],
2828
targets: [
2929
.target(
30-
name: "DeepLearning",
30+
name: "TensorFlow",
3131
dependencies: []),
3232
.testTarget(
33-
name: "DeepLearningTests",
34-
dependencies: ["DeepLearning"]),
33+
name: "TensorFlowTests",
34+
dependencies: ["TensorFlow"]),
3535
]
3636
)

Sources/DeepLearning/Initializers.swift

Lines changed: 0 additions & 176 deletions
This file was deleted.

0 commit comments

Comments
 (0)