aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/wav
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-08-24 11:35:42 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-08-24 12:47:59 -0700
commit46231cf242c19d74af75370eefd9e9b7c504c08a (patch)
tree6493f773f480aa30966a743088b10972a1d34b56 /tensorflow/core/lib/wav
parentfd69b50c84dc18a15a396488b8936e4b5cebc0d8 (diff)
Move host_info.h internal, move public functions into cpu_info.h
and make public. Hostname() is not public, but kLittleEndian arguably is (some code might need to know what the endianness is, like decode_raw_op, so it probably should be public). Similarly, NumSchedulableCPUs is probably something a lot of code wants to know. It is also already used widely and seems hard to remove in short notice, which suggests something about its utility. Change: 131203680
Diffstat (limited to 'tensorflow/core/lib/wav')
-rw-r--r--tensorflow/core/lib/wav/wav_io.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/lib/wav/wav_io.cc b/tensorflow/core/lib/wav/wav_io.cc
index 825d4f5957..31c81b7dde 100644
--- a/tensorflow/core/lib/wav/wav_io.cc
+++ b/tensorflow/core/lib/wav/wav_io.cc
@@ -23,7 +23,7 @@ limitations under the License.
#include "tensorflow/core/lib/core/coding.h"
#include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/lib/wav/wav_io.h"
-#include "tensorflow/core/platform/host_info.h"
+#include "tensorflow/core/platform/cpu_info.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/macros.h"