Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/include/mlir-c/
H A DBuiltinTypes.h171 MLIR_CAPI_EXPORTED bool mlirTypeIsAVector(MlirType type);
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DBuiltinTypes.cpp170 bool mlirTypeIsAVector(MlirType type) { return unwrap(type).isa<VectorType>(); } in mlirTypeIsAVector() function
/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRTypes.cpp328 static constexpr IsAFunctionTy isaFunction = mlirTypeIsAVector;
/llvm-project-15.0.7/mlir/test/CAPI/
H A Dir.c716 if (!mlirTypeIsAVector(vector) || !mlirTypeIsAShaped(vector)) in printBuiltinTypes()