/* 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. ==============================================================================*/ // See docs in ../ops/array_ops.cc. #include "tensorflow/core/lib/bfloat16/bfloat16.h" #include #include #include #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/types.h" #if GOOGLE_CUDA #include "tensorflow/core/common_runtime/gpu/gpu_event_mgr.h" #include "tensorflow/core/platform/cuda.h" #endif // GOOGLE_CUDA namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; typedef Eigen::GpuDevice GPUDevice; #if GOOGLE_CUDA template struct CheckNumericsLaunch { void Run(const GPUDevice& d, const T* data, int size, int abnormal_detected[2]); }; #endif namespace { template class CheckNumericsOp; // Partial specialization for CPU // TODO(jeff,rmlarsen): We should make this variant be an AsyncOpKernel, as // was done for the GPU case below. template class CheckNumericsOp : public OpKernel { public: explicit CheckNumericsOp(OpKernelConstruction* context) : OpKernel(context) { // message_ is used as the prefix for the assertion error message. For // instance, this can be the name of the input op that produced the tensor. OP_REQUIRES_OK(context, context->GetAttr("message", &message_)); } void Compute(OpKernelContext* context) override { // pass along the input to the output context->set_output(0, context->input(0)); auto in = context->input(0).flat(); const T* data = in.data(); const int64 size = in.size(); // Check to see if any element of the tensor is NaN or Inf. int fp_props = std::accumulate(data, data + size, 0, [](const int& x, const T& y) { int result = x; if (TF_PREDICT_TRUE(Eigen::numext::isfinite(y))) { // Do nothing: common case } else if (Eigen::numext::isinf(y)) { result |= kInfBit; } else if (Eigen::numext::isnan(y)) { result |= kNaNBit; } return result; }); if (fp_props != 0) { string status; if ((fp_props & kInfBit) && (fp_props & kNaNBit)) { status = "Inf and NaN"; } else { if (fp_props & kInfBit) { status = "Inf"; } if (fp_props & kNaNBit) { status = "NaN"; } } if (!status.empty()) { context->SetStatus(errors::InvalidArgument(message_, " : Tensor had ", status, " values")); } } } private: string message_; static const int kInfBit = 0x01; static const int kNaNBit = 0x02; }; #if GOOGLE_CUDA // Partial specialization for GPU template class CheckNumericsOp : public AsyncOpKernel { public: typedef GPUDevice Device; explicit CheckNumericsOp(OpKernelConstruction* context) : AsyncOpKernel(context) { // message_ is used as the prefix for the assertion error message. For // instance, this can be the name of the input op that produced the tensor. OP_REQUIRES_OK(context, context->GetAttr("message", &message_)); } void ComputeAsync(OpKernelContext* context, DoneCallback done) override { // pass along the input to the output context->set_output(0, context->input(0)); if (context->input(0).NumElements() == 0) { done(); return; } auto input = context->input(0).flat(); // Allocate and initialize the elements to hold the check results const int abnormal_detected_size = 2; Tensor abnormal_detected; OP_REQUIRES_OK(context, context->allocate_temp( DT_INT32, TensorShape({abnormal_detected_size}), &abnormal_detected)); auto* stream = context->op_device_context()->stream(); OP_REQUIRES_ASYNC(context, stream != nullptr, errors::Internal("No GPU stream available."), done); se::DeviceMemoryBase abnormal_detected_ptr( abnormal_detected.flat().data(), abnormal_detected.flat().size()); stream->ThenMemset32(&abnormal_detected_ptr, 0, abnormal_detected.flat().size() * sizeof(int)); // Call the Cuda kernels for the numerical checks const Device& d = context->eigen_device(); CheckNumericsLaunch().Run(d, input.data(), input.size(), abnormal_detected.flat().data()); // Copy the results from device to host AllocatorAttributes attr; attr.set_on_host(true); attr.set_gpu_compatible(true); Tensor abnormal_detected_host; OP_REQUIRES_OK_ASYNC( context, context->allocate_temp(DT_INT32, TensorShape({abnormal_detected_size}), &abnormal_detected_host, attr), done); OP_REQUIRES_ASYNC( context, stream ->ThenMemcpy(abnormal_detected_host.flat().data(), abnormal_detected_ptr, abnormal_detected_size * sizeof(int)) .ok(), errors::Internal("cudaMemcpy from device to host failed"), done); // We have observed crashes on some network stacks when not holding // this tensor reference. TensorReference abnormal_detected_ref(abnormal_detected); auto check_cb = [this, stream, abnormal_detected_ref, abnormal_detected_host, context, done]() { se::cuda::ScopedActivateExecutorContext scoped_activation{ stream->parent()}; auto abnormal_detected_host_flat = abnormal_detected_host.flat(); int is_nan = abnormal_detected_host_flat(0); int is_inf = abnormal_detected_host_flat(1); abnormal_detected_ref.Unref(); if (is_nan || is_inf) { string status; LOG(ERROR) << "abnormal_detected_host @" << abnormal_detected_host_flat.data() << " = {" << is_nan << ", " << is_inf << "} " << message_; // Results should always be 1 or 0. If we see anything else then // there has been some GPU memory corruption. CHECK_GE(is_nan, 0); CHECK_GE(is_inf, 0); CHECK_LE(is_nan, 1); CHECK_LE(is_inf, 1); if (is_nan && is_inf) { status = "Inf and NaN"; } else if (is_nan) { status = "NaN"; } else if (is_inf) { status = "Inf"; } context->SetStatus(errors::InvalidArgument(message_, " : Tensor had ", status, " values")); } done(); }; context->device()->tensorflow_gpu_device_info()->event_mgr->ThenExecute( stream, std::move(check_cb)); } private: string message_; }; #endif // GOOGLE_CUDA } // namespace #define REGISTER_CPU_KERNEL(T) \ REGISTER_KERNEL_BUILDER( \ Name("CheckNumerics").Device(DEVICE_CPU).TypeConstraint("T"), \ CheckNumericsOp); TF_CALL_half(REGISTER_CPU_KERNEL); TF_CALL_bfloat16(REGISTER_CPU_KERNEL); TF_CALL_float(REGISTER_CPU_KERNEL); TF_CALL_double(REGISTER_CPU_KERNEL); #if GOOGLE_CUDA REGISTER_KERNEL_BUILDER( Name("CheckNumerics").Device(DEVICE_GPU).TypeConstraint("T"), CheckNumericsOp); REGISTER_KERNEL_BUILDER( Name("CheckNumerics").Device(DEVICE_GPU).TypeConstraint("T"), CheckNumericsOp); REGISTER_KERNEL_BUILDER( Name("CheckNumerics").Device(DEVICE_GPU).TypeConstraint("T"), CheckNumericsOp); #endif // GOOGLE_CUDA } // namespace tensorflow