Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/test/CAPI/
H A Dllvm.c25 MlirType i8 = mlirIntegerTypeGet(ctx, 8); in testTypeCreation()
26 MlirType i32 = mlirIntegerTypeGet(ctx, 32); in testTypeCreation()
27 MlirType i64 = mlirIntegerTypeGet(ctx, 64); in testTypeCreation()
H A Dquant.c25 MlirType i8 = mlirIntegerTypeGet(ctx, 8); in testTypeHierarchy()
89 MlirType i8 = mlirIntegerTypeGet(ctx, 8); in testAnyQuantizedType()
135 MlirType i8 = mlirIntegerTypeGet(ctx, 8); in testUniformType()
164 MlirType i8 = mlirIntegerTypeGet(ctx, 8); in testUniformPerAxisType()
H A Dir.c516 MlirType i1 = mlirIntegerTypeGet(ctx, 1); in buildWithInsertionsAndPrint()
517 MlirType i2 = mlirIntegerTypeGet(ctx, 2); in buildWithInsertionsAndPrint()
518 MlirType i3 = mlirIntegerTypeGet(ctx, 3); in buildWithInsertionsAndPrint()
519 MlirType i4 = mlirIntegerTypeGet(ctx, 4); in buildWithInsertionsAndPrint()
520 MlirType i5 = mlirIntegerTypeGet(ctx, 5); in buildWithInsertionsAndPrint()
601 MlirAttribute iAttr = mlirIntegerAttrGet(mlirIntegerTypeGet(ctx, 32), 4); in createOperationWithTypeInference()
634 MlirType i32 = mlirIntegerTypeGet(ctx, 32); in printBuiltinTypes()
786 MlirType funcResults[3] = {mlirIntegerTypeGet(ctx, 16), in printBuiltinTypes()
787 mlirIntegerTypeGet(ctx, 32), in printBuiltinTypes()
788 mlirIntegerTypeGet(ctx, 64)}; in printBuiltinTypes()
[all …]
/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRAttributes.cpp449 bulkLoadElementType = signless ? mlirIntegerTypeGet(context, 32) in getFromBuffer()
453 bulkLoadElementType = signless ? mlirIntegerTypeGet(context, 64) in getFromBuffer()
457 bulkLoadElementType = signless ? mlirIntegerTypeGet(context, 8) in getFromBuffer()
461 bulkLoadElementType = signless ? mlirIntegerTypeGet(context, 16) in getFromBuffer()
468 ? mlirIntegerTypeGet(context, 32) in getFromBuffer()
473 ? mlirIntegerTypeGet(context, 64) in getFromBuffer()
477 bulkLoadElementType = signless ? mlirIntegerTypeGet(context, 8) in getFromBuffer()
482 ? mlirIntegerTypeGet(context, 16) in getFromBuffer()
H A DIRTypes.cpp41 MlirType t = mlirIntegerTypeGet(context->get(), width); in bindDerived()
H A DIRCore.cpp1502 mlirVectorTypeGet(1, &size, mlirIntegerTypeGet(context->get(), 32)), in buildGeneric()
1512 mlirVectorTypeGet(1, &size, mlirIntegerTypeGet(context->get(), 32)), in buildGeneric()
/llvm-project-15.0.7/mlir/include/mlir-c/
H A DBuiltinTypes.h30 MLIR_CAPI_EXPORTED MlirType mlirIntegerTypeGet(MlirContext ctx,
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DBuiltinTypes.cpp29 MlirType mlirIntegerTypeGet(MlirContext ctx, unsigned bitwidth) { in mlirIntegerTypeGet() function