Fix double evaluation of macro argument that was causing duplicate CUDA batched GEMM calls.

Change: 147025110

(cherry picked from commit f439016532)
This commit is contained in:
Peter Hawkins 2017-02-09 05:49:43 -08:00 committed by Yifei Feng
parent 5a7babb067
commit 2d364afa2b

View File

@ -59,7 +59,7 @@ limitations under the License.
#define SE_RETURN_STATUS_AS_BOOL(__status) \
do { \
auto status = __status; \
if (__status.ok()) { \
if (status.ok()) { \
return true; \
} \
LOG(ERROR) << status; \