STT-tensorflow/tensorflow/stream_executor/platform/logging.h
Juhyun Lee c2e9f671a7 Make //tf/compiler/xla:status_macros build with --config android_arm64.
PiperOrigin-RevId: 286955105
Change-Id: I8fcc9a8b726601ef2cf9a4e31eec2c5996d804f8
2019-12-23 16:13:11 -08:00

29 lines
1.0 KiB
C

/* 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.
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.
==============================================================================*/
#ifndef TENSORFLOW_STREAM_EXECUTOR_PLATFORM_LOGGING_H_
#define TENSORFLOW_STREAM_EXECUTOR_PLATFORM_LOGGING_H_
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/stream_executor/platform/port.h"
#if !defined(PLATFORM_GOOGLE) && !defined(PLATFORM_GOOGLE_ANDROID)
#define PCHECK(invocation) CHECK(invocation)
#endif
#endif // TENSORFLOW_STREAM_EXECUTOR_PLATFORM_LOGGING_H_