diff --git a/src/executor/attach_op_execs_pass.cc b/src/executor/attach_op_execs_pass.cc index 981fab2a4686..0d718df41c9e 100644 --- a/src/executor/attach_op_execs_pass.cc +++ b/src/executor/attach_op_execs_pass.cc @@ -45,8 +45,8 @@ class ForwardOpExecutor : public OpExecutor { GetDefaultBlobs(out_array, &out_data_, &temp_out_, op_ctx); op_->Forward(op_ctx, in_data_, req, out_data_, aux_data_); CastNonDefaultStorage(out_array, temp_out_, op_ctx); -#elif NDEBUG == 0 - LOG(DEBUG) << MXNET_GPU_NOT_ENABLED_ERROR; +#else + LOG(FATAL) << MXNET_GPU_NOT_ENABLED_ERROR; #endif } else { GetDefaultBlobs(in_array_, &in_data_, &temp_in_, op_ctx);