Skip to content

Commit

Permalink
feat: candle backend
Browse files Browse the repository at this point in the history
  • Loading branch information
decahedron1 committed Dec 14, 2024
1 parent d7d4493 commit a7f8a0a
Show file tree
Hide file tree
Showing 5 changed files with 2,033 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
'ort-sys',
'backends/candle',
'examples/async-gpt2-api',
'examples/custom-ops',
'examples/gpt2',
Expand Down
23 changes: 23 additions & 0 deletions backends/candle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "ort-candle"
description = "ort + candle = 🦀 - An alternative backend for ort, powered by candle."
version = "0.1.0+0.8.1"
edition = "2021"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pykeio/ort"
homepage = "https://ort.pyke.io/"
keywords = [ "machine-learning", "ai", "ml" , "sys"]
categories = [ "algorithms", "mathematics", "science" ]
authors = [
"pyke.io <[email protected]>"
]

[lib]
name = "ort_candle"
path = "lib.rs"

[dependencies]
ort-sys = { version = "2.0.0-rc.9", path = "../../ort-sys", default-features = false }
candle-core = { version = "0.8.1", default-features = false }
candle-onnx = { version = "0.8.1" }
Loading

0 comments on commit a7f8a0a

Please sign in to comment.