Go to the source code of this file.
◆ POPULATE_PROFILE_INFO_COMMON
#define POPULATE_PROFILE_INFO_COMMON |
( |
|
tosaOp | ) |
|
Value: if (isa<tosa::tosaOp##Op>(op)) { \
populateProfileInfo(op->getOperands(), op->getResult(0)); \
return success(); \
}
◆ POPULATE_PROFILE_INFO_CUSTOM
#define POPULATE_PROFILE_INFO_CUSTOM |
( |
|
tosaOp | ) |
|
Value: if (isa<tosa::tosaOp##Op>(op)) { \
populateProfileInfo(cast<tosa::tosaOp##Op>(op)); \
return success(); \
}
◆ POPULATE_PROFILE_INFO_SKIP
#define POPULATE_PROFILE_INFO_SKIP |
( |
|
tosaOp | ) |
|
Value: if (isa<tosa::tosaOp##Op>(op)) \
return success();