Skip to content

Commit 32dcfd0

Browse files
committed
Replace Tensorflow by TensorFlow
The name is written in camel case, see https://www.tensorflow.org/. Signed-off-by: Stefan Weil <[email protected]>
1 parent 1ba8c97 commit 32dcfd0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,10 @@ if test "$enable_opencl" = "yes"; then
195195
])
196196
fi
197197

198-
# Check whether to build with support for Tensorflow.
198+
# Check whether to build with support for TensorFlow.
199199
AC_ARG_WITH([tensorflow],
200200
AS_HELP_STRING([--with-tensorflow],
201-
[support Tensorflow @<:@default=check@:>@]),
201+
[support TensorFlow @<:@default=check@:>@]),
202202
[], [with_tensorflow=check])
203203
AM_CONDITIONAL([TENSORFLOW], false)
204204
TENSORFLOW_LIBS=

src/lstm/tfnetwork.proto

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// Compile this file with the Protocol Compiler protoc to generate
44
// the files tfnetwork.pb.cc and tfnetwork.pb.h.
55

6-
// This requires the protocol descriptions for Tensorflow
7-
// (included in the Tensorflow sources).
6+
// This requires the protocol descriptions for TensorFlow
7+
// (included in the TensorFlow sources).
88

9-
// With Tensorflow sources installed in /usr/src/tensorflow/tensorflow-1.10.1,
9+
// With TensorFlow sources installed in /usr/src/tensorflow/tensorflow-1.10.1,
1010
// this command was used on Debian to generate the files:
1111

1212
// protoc --cpp_out=$PWD --proto_path=/usr/src/tensorflow/tensorflow-1.10.1 \

0 commit comments

Comments
 (0)