[package]
edition = "2024"
rust-version = "1.85"
name = "ferrotorch-gpu"
version = "0.2.2"
authors = ["doll"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CUDA GPU backend for ferrotorch"
homepage = "https://github.com/dollspace-gay/ferrotorch"
readme = "README.md"
keywords = [
"deep-learning",
"machine-learning",
"autograd",
"neural-network",
"tensor",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dollspace-gay/ferrotorch"
[features]
cuda = ["dep:cudarc"]
default = ["cuda"]
[lib]
name = "ferrotorch_gpu"
path = "src/lib.rs"
[[test]]
name = "test_gpu_autograd"
path = "tests/test_gpu_autograd.rs"
[dependencies.cudarc]
version = "0.19"
features = [
"cuda-12080",
"cublas",
"cusolver",
]
optional = true
[dependencies.ferrotorch-core]
version = "0.2.2"
[dependencies.num-traits]
version = "0.2"