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:
parent
5a7babb067
commit
2d364afa2b
@ -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; \
|
||||
|
Loading…
Reference in New Issue
Block a user