pyo3-tch 0.18.0

Manipulate PyTorch tensors from a Python extension via PyO3/tch.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "pyo3-tch"
version = "0.18.0"
authors = ["Laurent Mazare <lmazare@gmail.com>"]
edition = "2021"
build = "build.rs"

description = "Manipulate PyTorch tensors from a Python extension via PyO3/tch."
repository = "https://github.com/LaurentMazare/tch-rs"
keywords = ["pytorch", "deep-learning", "machine-learning"]
categories = ["science"]
license = "MIT/Apache-2.0"

[dependencies]
tch = { path = "..", features = ["python-extension"], version = "0.18.0" }
torch-sys = { path = "../torch-sys", features = ["python-extension"], version = "0.18.0" }
pyo3 = { version = "0.21", features = ["extension-module"] }