aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/how_tos
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-06-02 12:32:54 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-06-02 13:41:12 -0700
commit122cdce33e3e0a01a7f82645617317530aa571fb (patch)
tree0a8d899b7e7930a59324ec78b5893eecdfb9817a /tensorflow/g3doc/how_tos
parentc8b59c046895fa5b6d79f73e0b5817330fcfbfc1 (diff)
Update copyright for 3p/tf.
Change: 123901292
Diffstat (limited to 'tensorflow/g3doc/how_tos')
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/attr_examples.cc2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/cuda_op.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cc2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cu.cc2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/cuda_op_test.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/fact_test.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_1_test.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_2_test.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_3_test.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_grad_2.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_1.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_2.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_3.py2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_1.cc2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_2.cc2
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_3.cc2
16 files changed, 16 insertions, 16 deletions
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/attr_examples.cc b/tensorflow/g3doc/how_tos/adding_an_op/attr_examples.cc
index 5e974de28d..4eb35668ce 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/attr_examples.cc
+++ b/tensorflow/g3doc/how_tos/adding_an_op/attr_examples.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015 Google Inc. All Rights Reserved.
+/* Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op.py b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op.py
index bf45413184..dd5428870b 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cc b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cc
index cb6799182d..eb8ea96255 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cc
+++ b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015 Google Inc. All Rights Reserved.
+/* Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cu.cc b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cu.cc
index 1b8c983d45..65b50bd3ae 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cu.cc
+++ b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_kernel.cu.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015 Google Inc. All Rights Reserved.
+/* Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_test.py b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_test.py
index 2425f7e46d..4ae5fde171 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_test.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/cuda_op_test.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/fact_test.py b/tensorflow/g3doc/how_tos/adding_an_op/fact_test.py
index 43bd35561c..f7f17e5180 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/fact_test.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/fact_test.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_1_test.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_1_test.py
index 1a0bb1552a..062e845a84 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_1_test.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_1_test.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_2_test.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_2_test.py
index cfa524f509..60c429eefe 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_2_test.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_2_test.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_3_test.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_3_test.py
index 9abcc25d46..a6778033d3 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_3_test.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_3_test.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_grad_2.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_grad_2.py
index 8b8185c818..9734c0ce96 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_grad_2.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_grad_2.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_1.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_1.py
index 0c1f8b627d..6bd98b1f06 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_1.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_1.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_2.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_2.py
index 0561ed49c6..ba1e8b4d62 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_2.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_2.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_3.py b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_3.py
index 26fa2d79b6..4354ecaf5a 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_3.py
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_3.py
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_1.cc b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_1.cc
index 3ba5b85993..010883322d 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_1.cc
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_1.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015 Google Inc. All Rights Reserved.
+/* Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_2.cc b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_2.cc
index 8b700bea48..0ef18c282f 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_2.cc
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_2.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015 Google Inc. All Rights Reserved.
+/* Copyright 2015 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.
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_3.cc b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_3.cc
index 4545275879..13ded77728 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_3.cc
+++ b/tensorflow/g3doc/how_tos/adding_an_op/zero_out_op_kernel_3.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015 Google Inc. All Rights Reserved.
+/* Copyright 2015 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.