Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Rust API #388

Closed
adamcrume opened this issue Dec 1, 2015 · 8 comments
Closed

Rust API #388

adamcrume opened this issue Dec 1, 2015 · 8 comments
Labels
stat:contribution welcome Status - Contributions welcome

Comments

@adamcrume
Copy link
Contributor

TensorFlow should have a Rust interface.

Original e-mail:
I'd like to write Rust bindings for TensorFlow, and I had a few questions. First of all, is anyone already working on this, and if so, can I lend a hand? If not, is this something the TensorFlow team would be interested in? I assume that the TensorFlow team would not be willing to commit right now to supporting Rust, so I thought a separate open source project (with the option to fold into the main project later) would be the way to go.

@girving
Copy link
Contributor

girving commented Dec 1, 2015

Moving email discussion here:

Rust bindings would be cool! I don't think there's anyone working on rust bindings so far, though it might be worth an email to discuss@tensorflow.org to check. Agreed that a separate project is probably good to start out.

To start the conversation, there are a couple different levels of bindings:

  1. Bindings that do not know about specific ops, but can create graphs "manually" or load them from GraphDefs, evaluate graphs (so that tensorflow models can be run inside rust servers), etc. There's hopefully nothing blocking that.
  2. Autogenerated bindings for each C++ op. We do this for Python, and similar things should work for Rust (ideally with a lot more type safety). I have limited intuition for rust's handling of ad-hoc polymorphism, so I can't judge how easy it'll be to fit tensorflow's notions of polymorphism into rust's. Again, there's hopefully nothing blocking this.
  3. Idiomatic bindings. We currently have a lot of logic in pure Python, including both per-op sugar and key features such as automatic differentiation. We will likely eventually move this to C++, but until then it will be difficult to capture this functionality in rust bindings without duplicating a ton of effort. Unfortunately, automatic differentiation in particular is (mostly) necessary if you want to train models.

It's probably best to shoot for (1) to start and only move to (2) once it's clear how much of (3) will be a blocker for the desired applications.

@ajtulloch
Copy link

FWIW, getting something like 1) is pretty straightforward with rust-bindgen and tensor_c_api.h, I put something together the other weekend in https://github.com/ajtulloch/tensorflow-rs/blob/master/src/tf.rs if that's useful.

@thomasquintana
Copy link

I would be glad to work on a Rust interface for TensorFlow if nobody is currently working on a solution.

@adamcrume
Copy link
Contributor Author

I just launched a project to provide the Rust bindings at https://github.com/google/tensorflow-rust. The build glue is there, but most of the bindings have yet to be written.

@girving
Copy link
Contributor

girving commented Feb 5, 2016

Nice! I'm happy to help with any issues you run into.

@jendap
Copy link
Contributor

jendap commented Feb 5, 2016

Cool!

@girving girving mentioned this issue Mar 8, 2016
@girving girving added the triaged label Jun 8, 2016
@aselle aselle added stat:community support Status - Community Support stat:contribution welcome Status - Contributions welcome and removed triaged stat:community support Status - Community Support labels Jul 28, 2016
@asimshankar
Copy link
Contributor

It seems that the Rust bindings are building on top of c_api.h using the approach outlined in the how-to, which is great.

If you run into concerns with the documentation or the C-API, please do create a separate issue

Thanks!

@jhseu
Copy link
Contributor

jhseu commented Nov 4, 2016

Closing this issue. The Rust bindings have been moved to github.com/tensorflow/rust

@jhseu jhseu closed this as completed Nov 4, 2016
darkbuck pushed a commit to darkbuck/tensorflow that referenced this issue Jan 23, 2020
…pstream-deven-whitelist-v2-failures

Whitelisting failures in the rocm_v2 CI run
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
stat:contribution welcome Status - Contributions welcome
Projects
None yet
Development

No branches or pull requests

8 participants