Lines Matching refs:MatchConvolutionResult
265 enum class MatchConvolutionResult { enum
276 static MatchConvolutionResult isConvolutionInterfaceImpl(Operation *op) { in isConvolutionInterfaceImpl()
279 return MatchConvolutionResult::NotLinalgOp; in isConvolutionInterfaceImpl()
281 return MatchConvolutionResult::WrongNumOperands; in isConvolutionInterfaceImpl()
291 return MatchConvolutionResult::WrongInputIndexingMap; in isConvolutionInterfaceImpl()
297 return MatchConvolutionResult::NotProjectedPermutations; in isConvolutionInterfaceImpl()
326 return MatchConvolutionResult::OutputDimsNotParallel; in isConvolutionInterfaceImpl()
335 return MatchConvolutionResult::OutputDimsNotParallel; in isConvolutionInterfaceImpl()
345 return MatchConvolutionResult::OutputDimsNotParallel; in isConvolutionInterfaceImpl()
354 return MatchConvolutionResult::OutputDimsNotParallel; in isConvolutionInterfaceImpl()
358 return MatchConvolutionResult::NonConvolutionLoop; in isConvolutionInterfaceImpl()
373 return MatchConvolutionResult::NonOutputDimNotReduction; in isConvolutionInterfaceImpl()
375 return MatchConvolutionResult::NonConvolutionLoop; in isConvolutionInterfaceImpl()
384 return MatchConvolutionResult::NonOutputDimNotReduction; in isConvolutionInterfaceImpl()
386 return MatchConvolutionResult::NonConvolutionLoop; in isConvolutionInterfaceImpl()
395 return MatchConvolutionResult::NonConvolutionLoop; in isConvolutionInterfaceImpl()
399 return MatchConvolutionResult::NonConvolutionLoop; in isConvolutionInterfaceImpl()
401 return MatchConvolutionResult::Success; in isConvolutionInterfaceImpl()
406 if (res == MatchConvolutionResult::NotLinalgOp) in verifyConvolutionInterface()
408 if (res == MatchConvolutionResult::WrongNumOperands) in verifyConvolutionInterface()
410 if (res == MatchConvolutionResult::WrongInputIndexingMap) in verifyConvolutionInterface()
412 if (res == MatchConvolutionResult::NotProjectedPermutations) { in verifyConvolutionInterface()
416 if (res == MatchConvolutionResult::NonConvolutionLoop) { in verifyConvolutionInterface()
419 if (res == MatchConvolutionResult::OutputDimsNotParallel) { in verifyConvolutionInterface()
423 if (res == MatchConvolutionResult::NonOutputDimNotReduction) { in verifyConvolutionInterface()