Live data from Hacker News

Tensorflow 1.5.0 release canidate includes “eager execution”

github.com

11–14 of 14 posts

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#11
Good news for me: "Starting from 1.6 release, our prebuilt binaries will use AVX instructions. This may break TF on older CPUs."

I just this morning gave up trying to compile Tensorflow from sources with AVX. I'm sure I could do it given the time but after 5 minutes it was clearly a more complicated project. Shame it may break older CPUs though, I wonder what the challenge is in releasing two versions?

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#12
post #3
post #2

What is eager execution?

https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflo... > Eager execution is an experimental interface to TensorFlow that provides an imperative programming style (à la NumPy). When you enable eager execution, TensorFlow operations execute immediately; you do not execute a pre-constructed graph with Session.run().

This is great! No more constant `eval` spam :)

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#13

Good to see it, been running tf-nightly, cuda 9.1 nvidia gpu drivers with cuda 8. The entire dependency issues between drivers/apps/libraries have been incredibly annoying.

Some Linux distro package modern versions of tensorflow, cuda, cudnn and nvidia which all work in tandem which makes this a whole lot less annoying to deal with.

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#14

Good news for me: "Starting from 1.6 release, our prebuilt binaries will use AVX instructions. This may break TF on older CPUs." I just this morning gave up trying to compile Tensorflow from sources with AVX. I'm sure I could do it given the time but after 5 minutes it was clearly a more complicated project. Shame it may break older CPUs though, I wonder what the challenge is in releasing two versions?

Here is how I build architecture optimized TensorFlow 1.4 binaries for specific AWS instance types:

https://gist.github.com/daniel-j-h/b410dd21d4949a54c83d0c386...

The build script needs slight adaptions between major TensorFlow releases; otherwise works great for me so far.

During boot time you can then figure out the instance architecture you are and fetch the appropriate wheel. Hope it helps.

Post reply on HN