Skip to content

Instantly share code, notes, and snippets.

@bgogul
Last active May 30, 2019 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bgogul/d4fb0d652064654391796202a8aba2ea to your computer and use it in GitHub Desktop.
Save bgogul/d4fb0d652064654391796202a8aba2ea to your computer and use it in GitHub Desktop.
DeepLearning Package
import PackageDescription
let package = Package(
name: "DeepLearning",
products: [
.library(
name: "DeepLearning",
targets: ["DeepLearning"]),
],
dependencies: [],
targets: [
.target(
name: "DeepLearning",
dependencies: [],
exclude: [
"Bindings/EagerExecution.swift",
"Bindings/RawOpsGenerated.swift",
"Bindings/TFTensorOperation.swift",
"Core/Runtime.swift"]),
.testTarget(
name: "DeepLearningTests",
dependencies: ["DeepLearning"]),
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment