Skip to content

Commit 0abf98c

Browse files
committed
[QDP] Add TensorFlow tensor input support
1 parent 08e849d commit 0abf98c

File tree

13 files changed

+1048
-2
lines changed

13 files changed

+1048
-2
lines changed

qdp/Cargo.lock

Lines changed: 232 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

qdp/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ rayon = "1.10"
2828
arrow = "54"
2929
# Parquet support for Arrow
3030
parquet = "54"
31+
# Protocol Buffer support for TensorFlow TensorProto
32+
prost = "0.12"
33+
prost-build = "0.12"
34+
bytes = "1.5"
35+
# Optional: vendored protoc to avoid build failures when protoc is missing
36+
protoc-bin-vendored = "3"
3137

3238
# Release profile optimizations
3339
[profile.release]

qdp/qdp-core/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ rayon = { workspace = true }
1111
nvtx = { version = "1.3", optional = true }
1212
arrow = { workspace = true }
1313
parquet = { workspace = true }
14+
prost = { workspace = true }
15+
bytes = { workspace = true }
16+
17+
[build-dependencies]
18+
prost-build = { workspace = true }
19+
protoc-bin-vendored = { workspace = true }
1420

1521
[lib]
1622
name = "qdp_core"

0 commit comments

Comments
 (0)