aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/genop/internal/genop.go
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/go/genop/internal/genop.go')
-rw-r--r--tensorflow/go/genop/internal/genop.go40
1 files changed, 21 insertions, 19 deletions
diff --git a/tensorflow/go/genop/internal/genop.go b/tensorflow/go/genop/internal/genop.go
index d17c1ca41d..dec08dee1c 100644
--- a/tensorflow/go/genop/internal/genop.go
+++ b/tensorflow/go/genop/internal/genop.go
@@ -1,16 +1,18 @@
-// Copyright 2016 The TensorFlow Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
+/*
+Copyright 2016 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
// Package internal generates Go source code with functions for TensorFlow operations.
//
@@ -156,12 +158,12 @@ func makeOutputList(op *tf.Operation, start int, output string) ([]tf.Output, in
`))
tmplOp = template.Must(template.New("op").Funcs(template.FuncMap{
- "MakeComment": makeComment,
- "GoType": goType,
- "CamelCase": camelCase,
- "Identifier": identifier,
- "IsListArg": isListArg,
- "IsListAttr": isListAttr,
+ "MakeComment": makeComment,
+ "GoType": goType,
+ "CamelCase": camelCase,
+ "Identifier": identifier,
+ "IsListArg": isListArg,
+ "IsListAttr": isListAttr,
"StripLeadingColon": stripLeadingColon,
}).Parse(`
{{if .OptionalAttrs -}}