Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/python/mlir/dialects/linalg/opdsl/lang/
H A Dcomprehension.py283 class BinaryFnType: class
311 add = BinaryFnType("add")
312 sub = BinaryFnType("sub")
313 mul = BinaryFnType("mul")
314 max_signed = BinaryFnType("max_signed")
315 min_signed = BinaryFnType("min_signed")
316 max_unsigned = BinaryFnType("max_unsigned")
317 min_unsigned = BinaryFnType("min_unsigned")
381 def __init__(self, binary_fn: BinaryFnType): argument
382 if not isinstance(binary_fn, BinaryFnType):
[all …]
H A Demitter.py154 if not isinstance(fn, BinaryFnType):
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/tools/
H A Dmlir_pytaco.py1757 def _op_to_callable(op: _BinaryOp) -> lang.BinaryFnType: