Home | History | Annotate | Download | only in default

Lines Matching defs:CHECK

93 // CHECK dies with a fatal error if condition is not true.  It is *not*
94 // controlled by NDEBUG, so the check will be executed regardless of
96 // CHECK(fp->Write(x) == 4)
97 #define CHECK(condition) \
99 LOG(FATAL) << "Check failed: " #condition " "
103 // CHECK* macros. It's not encouraged though.
231 TF_DEFINE_CHECK_OP_IMPL(Check_NE, !=) // Use CHECK(x == NULL) instead.
263 #define DCHECK(condition) CHECK(condition)
292 // These are for when you don't want a CHECK failure to print a verbose
293 // stack trace. The implementation of CHECK* in this file already doesn't.
294 #define QCHECK(condition) CHECK(condition)