Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/include/mlir-c/
H A DBuiltinTypes.h295 MLIR_CAPI_EXPORTED bool mlirTypeIsATuple(MlirType type);
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DBuiltinTypes.cpp313 bool mlirTypeIsATuple(MlirType type) { return unwrap(type).isa<TupleType>(); } in mlirTypeIsATuple() function
/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRTypes.cpp536 static constexpr IsAFunctionTy isaFunction = mlirTypeIsATuple;
/llvm-project-15.0.7/mlir/test/CAPI/
H A Dir.c776 if (!mlirTypeIsATuple(tuple) || mlirTupleTypeGetNumTypes(tuple) != 2 || in printBuiltinTypes()