intel / openvino-rs

Rust bindings for OpenVINO™
Apache License 2.0
80 stars 23 forks source link

[Question] Why no `Send` on `Tensor`? #132

Open oleflb opened 1 month ago

oleflb commented 1 month ago

Is there a reason Send is not implemented for the Tensor type?

abrown commented 1 month ago

This is probably possible but just hasn't been thought through with the recent switch to OpenVINO's "API 2.0" interface. It may relate a bit to your other question, #133, in that we need to ensure that Tensor can indeed be safely passed around between threads.