Skip to content

Commit f8347ce

Browse files
Sanjoy Dastensorflower-gardener
Sanjoy Das
authored andcommitted
Remove THIRD_PARTY_ from #include guards
They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
1 parent 1b0a771 commit f8347ce

File tree

429 files changed

+1279
-1286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

429 files changed

+1279
-1286
lines changed

tensorflow/c/c_test_util.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_C_C_TEST_UTIL_H_
17-
#define THIRD_PARTY_TENSORFLOW_C_C_TEST_UTIL_H_
16+
#ifndef TENSORFLOW_C_C_TEST_UTIL_H_
17+
#define TENSORFLOW_C_C_TEST_UTIL_H_
1818

1919
#include "tensorflow/c/c_api.h"
2020

@@ -136,4 +136,4 @@ class CSession {
136136
std::vector<TF_Operation*> targets_;
137137
};
138138

139-
#endif // THIRD_PARTY_TENSORFLOW_C_C_TEST_UTIL_H_
139+
#endif // TENSORFLOW_C_C_TEST_UTIL_H_

tensorflow/c/python_api.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_C_PYTHON_API_H_
17-
#define THIRD_PARTY_TENSORFLOW_C_PYTHON_API_H_
16+
#ifndef TENSORFLOW_C_PYTHON_API_H_
17+
#define TENSORFLOW_C_PYTHON_API_H_
1818

1919
#include "tensorflow/c/c_api.h"
2020

@@ -39,4 +39,4 @@ void RemoveAllControlInputs(TF_Graph* graph, TF_Operation* op);
3939

4040
} // namespace tensorflow
4141

42-
#endif // THIRD_PARTY_TENSORFLOW_C_PYTHON_API_H_
42+
#endif // TENSORFLOW_C_PYTHON_API_H_

tensorflow/cc/framework/cc_op_gen.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_CC_OP_GEN_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_CC_OP_GEN_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_CC_OP_GEN_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_CC_OP_GEN_H_
1818

1919
#include "tensorflow/core/framework/op_def.pb.h"
2020
#include "tensorflow/core/framework/op_gen_lib.h"
@@ -28,4 +28,4 @@ void WriteCCOps(const OpList& ops, const ApiDefMap& api_def_map,
2828

2929
} // namespace tensorflow
3030

31-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_CC_OP_GEN_H_
31+
#endif // TENSORFLOW_CC_FRAMEWORK_CC_OP_GEN_H_

tensorflow/cc/framework/grad_op_registry.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRAD_OP_REGISTRY_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRAD_OP_REGISTRY_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_GRAD_OP_REGISTRY_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_GRAD_OP_REGISTRY_H_
1818

1919
#include <unordered_map>
2020

@@ -72,4 +72,4 @@ class GradOpRegistry {
7272

7373
} // namespace tensorflow
7474

75-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRAD_OP_REGISTRY_H_
75+
#endif // TENSORFLOW_CC_FRAMEWORK_GRAD_OP_REGISTRY_H_

tensorflow/cc/framework/gradient_checker.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRADIENT_CHECKER_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRADIENT_CHECKER_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_GRADIENT_CHECKER_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_GRADIENT_CHECKER_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -60,4 +60,4 @@ Status ComputeGradientError(const Scope& scope, const Output& x,
6060

6161
} // namespace tensorflow
6262

63-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRADIENT_CHECKER_H_
63+
#endif // TENSORFLOW_CC_FRAMEWORK_GRADIENT_CHECKER_H_

tensorflow/cc/framework/gradients.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRADIENTS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRADIENTS_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_GRADIENTS_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_GRADIENTS_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -49,4 +49,4 @@ Output NoGradient();
4949

5050
} // namespace tensorflow
5151

52-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_GRADIENTS_H_
52+
#endif // TENSORFLOW_CC_FRAMEWORK_GRADIENTS_H_

tensorflow/cc/framework/ops.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_OPS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_OPS_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_OPS_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_OPS_H_
1818

1919
#include <type_traits>
2020

@@ -296,4 +296,4 @@ class InputList {
296296

297297
} // namespace tensorflow
298298

299-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_OPS_H_
299+
#endif // TENSORFLOW_CC_FRAMEWORK_OPS_H_

tensorflow/cc/framework/scope.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_SCOPE_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_SCOPE_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_SCOPE_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_SCOPE_H_
1818

1919
#include <memory>
2020
#include <string>
@@ -242,4 +242,4 @@ struct CompositeOpScopes {
242242

243243
} // namespace tensorflow
244244

245-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_SCOPE_H_
245+
#endif // TENSORFLOW_CC_FRAMEWORK_SCOPE_H_

tensorflow/cc/framework/scope_internal.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_SCOPE_INTERNAL_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_SCOPE_INTERNAL_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_SCOPE_INTERNAL_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_SCOPE_INTERNAL_H_
1818

1919
#include "tensorflow/cc/framework/scope.h"
2020

@@ -117,4 +117,4 @@ class Scope::Impl {
117117

118118
} // namespace tensorflow
119119

120-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_SCOPE_INTERNAL_H_
120+
#endif // TENSORFLOW_CC_FRAMEWORK_SCOPE_INTERNAL_H_

tensorflow/cc/framework/testutil.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_TESTUTIL_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_TESTUTIL_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_TESTUTIL_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_TESTUTIL_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -44,4 +44,4 @@ void GetTensor(const Scope& scope, const std::vector<Output>& assign_vars,
4444
} // namespace test
4545
} // namespace tensorflow
4646

47-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_TESTUTIL_H_
47+
#endif // TENSORFLOW_CC_FRAMEWORK_TESTUTIL_H_

tensorflow/cc/framework/while_gradients.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_WHILE_GRADIENTS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_WHILE_GRADIENTS_H_
16+
#ifndef TENSORFLOW_CC_FRAMEWORK_WHILE_GRADIENTS_H_
17+
#define TENSORFLOW_CC_FRAMEWORK_WHILE_GRADIENTS_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -37,4 +37,4 @@ Status AddWhileLoopGradient(WhileContext* while_ctx, const Scope& scope,
3737

3838
} // namespace tensorflow
3939

40-
#endif // THIRD_PARTY_TENSORFLOW_CC_FRAMEWORK_WHILE_GRADIENTS_H_
40+
#endif // TENSORFLOW_CC_FRAMEWORK_WHILE_GRADIENTS_H_

tensorflow/cc/gradients/grad_testutil.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_GRADIENTS_GRAD_TESTUTIL_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_GRADIENTS_GRAD_TESTUTIL_H_
16+
#ifndef TENSORFLOW_CC_GRADIENTS_GRAD_TESTUTIL_H_
17+
#define TENSORFLOW_CC_GRADIENTS_GRAD_TESTUTIL_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -32,4 +32,4 @@ Status CallGradFunction(const Scope& scope, const Operation& op,
3232
} // namespace test
3333
} // namespace tensorflow
3434

35-
#endif // THIRD_PARTY_TENSORFLOW_CC_GRADIENTS_GRAD_TESTUTIL_H_
35+
#endif // TENSORFLOW_CC_GRADIENTS_GRAD_TESTUTIL_H_

tensorflow/cc/ops/const_op.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_OPS_CONST_OP_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_OPS_CONST_OP_H_
16+
#ifndef TENSORFLOW_CC_OPS_CONST_OP_H_
17+
#define TENSORFLOW_CC_OPS_CONST_OP_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -82,4 +82,4 @@ std::vector<NodeBuilder::NodeOut> AsNodeOutList(const Scope& scope,
8282
} // namespace ops
8383
} // namespace tensorflow
8484

85-
#endif // THIRD_PARTY_TENSORFLOW_CC_OPS_CONST_OP_H_
85+
#endif // TENSORFLOW_CC_OPS_CONST_OP_H_

tensorflow/cc/ops/standard_ops.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_OPS_STANDARD_OPS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_OPS_STANDARD_OPS_H_
16+
#ifndef TENSORFLOW_CC_OPS_STANDARD_OPS_H_
17+
#define TENSORFLOW_CC_OPS_STANDARD_OPS_H_
1818

1919
#include "tensorflow/cc/ops/array_ops.h"
2020
#include "tensorflow/cc/ops/candidate_sampling_ops.h"
@@ -37,4 +37,4 @@ limitations under the License.
3737
#include "tensorflow/cc/ops/training_ops.h"
3838
#include "tensorflow/cc/ops/user_ops.h"
3939

40-
#endif // THIRD_PARTY_TENSORFLOW_CC_OPS_STANDARD_OPS_H_
40+
#endif // TENSORFLOW_CC_OPS_STANDARD_OPS_H_

tensorflow/cc/ops/while_loop.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_OPS_WHILE_LOOP_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_OPS_WHILE_LOOP_H_
16+
#ifndef TENSORFLOW_CC_OPS_WHILE_LOOP_H_
17+
#define TENSORFLOW_CC_OPS_WHILE_LOOP_H_
1818

1919
#include "tensorflow/cc/framework/ops.h"
2020
#include "tensorflow/cc/framework/scope.h"
@@ -71,4 +71,4 @@ Status BuildWhileLoop(const Scope& scope, const std::vector<Output>& inputs,
7171
} // namespace ops
7272
} // namespace tensorflow
7373

74-
#endif // THIRD_PARTY_TENSORFLOW_CC_OPS_WHILE_LOOP_H_
74+
#endif // TENSORFLOW_CC_OPS_WHILE_LOOP_H_

tensorflow/cc/profiler/profiler.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_PROFILER_PROFILER_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_PROFILER_PROFILER_H_
16+
#ifndef TENSORFLOW_CC_PROFILER_PROFILER_H_
17+
#define TENSORFLOW_CC_PROFILER_PROFILER_H_
1818

1919
#include "tensorflow/core/framework/graph.pb.h"
2020
#include "tensorflow/core/lib/core/status.h"
@@ -94,4 +94,4 @@ class Profiler {
9494
} // namespace tfprof
9595
} // namespace tensorflow
9696

97-
#endif // THIRD_PARTY_TENSORFLOW_CC_PROFILER_PROFILER_H_
97+
#endif // TENSORFLOW_CC_PROFILER_PROFILER_H_

tensorflow/cc/saved_model/constants.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_CONSTANTS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_CONSTANTS_H_
16+
#ifndef TENSORFLOW_CC_SAVED_MODEL_CONSTANTS_H_
17+
#define TENSORFLOW_CC_SAVED_MODEL_CONSTANTS_H_
1818

1919
namespace tensorflow {
2020

@@ -47,4 +47,4 @@ constexpr char kSavedModelVariablesFilename[] = "variables";
4747

4848
} // namespace tensorflow
4949

50-
#endif // THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_CONSTANTS_H_
50+
#endif // TENSORFLOW_CC_SAVED_MODEL_CONSTANTS_H_

tensorflow/cc/saved_model/loader.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ limitations under the License.
1515

1616
/// SavedModel loading functions and SavedModelBundle struct.
1717

18-
#ifndef THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_LOADER_H_
19-
#define THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_LOADER_H_
18+
#ifndef TENSORFLOW_CC_SAVED_MODEL_LOADER_H_
19+
#define TENSORFLOW_CC_SAVED_MODEL_LOADER_H_
2020

2121
#include <string>
2222
#include <unordered_set>
@@ -61,4 +61,4 @@ bool MaybeSavedModelDirectory(const string& export_dir);
6161

6262
} // namespace tensorflow
6363

64-
#endif // THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_LOADER_H_
64+
#endif // TENSORFLOW_CC_SAVED_MODEL_LOADER_H_

tensorflow/cc/saved_model/signature_constants.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
16+
#ifndef TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
17+
#define TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
1818

1919
namespace tensorflow {
2020

@@ -66,4 +66,4 @@ static constexpr char kRegressOutputs[] = "outputs";
6666

6767
} // namespace tensorflow
6868

69-
#endif // THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
69+
#endif // TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_

tensorflow/cc/saved_model/tag_constants.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_TAG_CONSTANTS_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_TAG_CONSTANTS_H_
16+
#ifndef TENSORFLOW_CC_SAVED_MODEL_TAG_CONSTANTS_H_
17+
#define TENSORFLOW_CC_SAVED_MODEL_TAG_CONSTANTS_H_
1818

1919
namespace tensorflow {
2020

@@ -32,4 +32,4 @@ constexpr char kSavedModelTagTrain[] = "train";
3232

3333
} // namespace tensorflow
3434

35-
#endif // THIRD_PARTY_TENSORFLOW_CC_SAVED_MODEL_TAG_CONSTANTS_H_
35+
#endif // TENSORFLOW_CC_SAVED_MODEL_TAG_CONSTANTS_H_

tensorflow/cc/tools/freeze_saved_model.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
15-
#ifndef THIRD_PARTY_TENSORFLOW_CC_TOOLS_FREEZE_SAVED_MODEL_H_
16-
#define THIRD_PARTY_TENSORFLOW_CC_TOOLS_FREEZE_SAVED_MODEL_H_
15+
#ifndef TENSORFLOW_CC_TOOLS_FREEZE_SAVED_MODEL_H_
16+
#define TENSORFLOW_CC_TOOLS_FREEZE_SAVED_MODEL_H_
1717

1818
#include <unordered_set>
1919

@@ -40,4 +40,4 @@ Status FreezeSavedModel(const SavedModelBundle& saved_model_bundle,
4040

4141
} // namespace tensorflow
4242

43-
#endif // THIRD_PARTY_TENSORFLOW_CC_TOOLS_FREEZE_SAVED_MODEL_H_
43+
#endif // TENSORFLOW_CC_TOOLS_FREEZE_SAVED_MODEL_H_

tensorflow/cc/training/coordinator.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_TRAINING_COORDINATOR_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_TRAINING_COORDINATOR_H_
16+
#ifndef TENSORFLOW_CC_TRAINING_COORDINATOR_H_
17+
#define TENSORFLOW_CC_TRAINING_COORDINATOR_H_
1818

1919
#include <atomic>
2020
#include <memory>
@@ -128,4 +128,4 @@ class Coordinator {
128128

129129
} // namespace tensorflow
130130

131-
#endif // THIRD_PARTY_TENSORFLOW_CC_TRAINING_COORDINATOR_H_
131+
#endif // TENSORFLOW_CC_TRAINING_COORDINATOR_H_

tensorflow/cc/training/queue_runner.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#ifndef THIRD_PARTY_TENSORFLOW_CC_TRAINING_QUEUE_RUNNER_H_
17-
#define THIRD_PARTY_TENSORFLOW_CC_TRAINING_QUEUE_RUNNER_H_
16+
#ifndef TENSORFLOW_CC_TRAINING_QUEUE_RUNNER_H_
17+
#define TENSORFLOW_CC_TRAINING_QUEUE_RUNNER_H_
1818

1919
#include <memory>
2020
#include <string>
@@ -137,4 +137,4 @@ class QueueRunner : public RunnerInterface {
137137

138138
} // namespace tensorflow
139139

140-
#endif // THIRD_PARTY_TENSORFLOW_CC_TRAINING_QUEUE_RUNNER_H_
140+
#endif // TENSORFLOW_CC_TRAINING_QUEUE_RUNNER_H_

tensorflow/compiler/tf2xla/kernels/shape_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ Status TensorShapeToConstant(const TensorShape& input_shape,
3131

3232
} // namespace tensorflow
3333

34-
#endif // THIRD_PARTY_TENSORFLOW_COMPILER_TF2XLA_KERNELS_SHAPE_UTIL_H_
34+
#endif // TENSORFLOW_COMPILER_TF2XLA_KERNELS_SHAPE_UTIL_H_

0 commit comments

Comments
 (0)