Home
last modified time | relevance | path

Searched refs:MatchFillResult (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/IR/
H A DLinalgInterfaces.cpp434 enum class MatchFillResult { enum
441 static MatchFillResult isFillInterfaceImpl(Operation *op) { in isFillInterfaceImpl()
444 return MatchFillResult::NotLinalgOp; in isFillInterfaceImpl()
446 return MatchFillResult::WrongNumOperands; in isFillInterfaceImpl()
450 return MatchFillResult::NotScalarInput; in isFillInterfaceImpl()
452 return MatchFillResult::Success; in isFillInterfaceImpl()
457 if (res == MatchFillResult::NotLinalgOp) in verifyFillInterface()
459 if (res == MatchFillResult::WrongNumOperands) in verifyFillInterface()
461 if (res == MatchFillResult::NotScalarInput) in verifyFillInterface()