aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/padding.cc
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2015-11-16 11:11:36 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2015-11-16 11:11:36 -0800
commit56313def004795f75ef8281a0294c958d28f1e06 (patch)
treeb1574e8fa6fdeb6f7155511d8e4eccda85f3b0e1 /tensorflow/core/util/padding.cc
parentcb9fa5fc9de9f3fc97c15bbcce252d7d7fdcb73b (diff)
TensorFlow: Doc and linter fixes, some additional tests and
error handling, updates to website. Changes: - Removes redundant reshape from image models by @mrry - Default TensorBoard to localhost by @danmane - Reformatting of tensorflow/core by @josh11b - Make tutorials backwards compatible to 0.5.0 by @girving - Improve print documentation (md files not updated). - Add proper scrolling to sitemap by @martinwicke Base CL: 107956254
Diffstat (limited to 'tensorflow/core/util/padding.cc')
-rw-r--r--tensorflow/core/util/padding.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/util/padding.cc b/tensorflow/core/util/padding.cc
index 24273e5ca4..875e748629 100644
--- a/tensorflow/core/util/padding.cc
+++ b/tensorflow/core/util/padding.cc
@@ -6,7 +6,7 @@
namespace tensorflow {
Status GetNodeAttr(const NodeDef& node_def, const string& attr_name,
- Padding* value) {
+ Padding* value) {
string str_value;
TF_RETURN_IF_ERROR(GetNodeAttr(node_def, attr_name, &str_value));
if (str_value == "SAME") {