| 221 | static inline bool isGEMM(const MatExpr& e) { return e.op == &g_MatOp_GEMM; } |
| 222 | static inline bool isMatProd(const MatExpr& e) { return e.op == &g_MatOp_GEMM && (!e.c.data || e.beta == 0); } |
| 223 | static inline bool isInitializer(const MatExpr& e) { return e.op == getGlobalMatOpInitializer(); } |
| 224 | |
| 225 | ///////////////////////////////////////////////////////////////////////////////////////////////////// |
| 226 |
no test coverage detected