[package]
edition = "2021"
name = "burn-mpsgraph"
version = "0.0.1"
build = "build.rs"
exclude = [
"benches/*",
"tests/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Apple MPSGraph backend for the Burn deep learning framework"
homepage = "https://github.com/eugenehp/burn-mpsgraph"
documentation = "https://docs.rs/burn-mpsgraph"
readme = "README.md"
keywords = [
"burn",
"deep-learning",
"metal",
"apple",
"gpu",
]
categories = [
"science",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eugenehp/burn-mpsgraph"
[lib]
name = "burn_mpsgraph"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "conv"
path = "examples/conv.rs"
[[example]]
name = "inference"
path = "examples/inference.rs"
[dependencies.burn-backend]
version = "0.21.0-pre.2"
[dependencies.burn-std]
version = "0.21.0-pre.2"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.burn]
version = "0.21.0-pre.2"
[dev-dependencies.burn-ndarray]
version = "0.21.0-pre.2"
[dev-dependencies.burn-wgpu]
version = "0.21.0-pre.2"
features = ["metal"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]