Go to the source code of this file.
◆ CHECK_RANKS_AND_SIZES
| #define CHECK_RANKS_AND_SIZES |
( |
|
tosaOp | ) |
|
Value: if (isa<tosa::tosaOp##Op>(op)) { \
if (
failed(levelCheckRanks(cast<tosa::tosaOp##Op>(op)))) \
return failure(); \
if (
failed(levelCheckSizes(cast<tosa::tosaOp##Op>(op)))) \
return failure(); \
}
◆ CHECK_SIZES
| #define CHECK_SIZES |
( |
|
tosaOp | ) |
|
Value: if (isa<tosa::tosaOp##Op>(op)) { \
if (
failed(levelCheckSizes(cast<tosa::tosaOp##Op>(op)))) \
return failure(); \
}
◆ GEN_PASS_DEF_TOSAVALIDATION
| #define GEN_PASS_DEF_TOSAVALIDATION |